Private GIT

Skip to content
Snippets Groups Projects
Select Git revision
22 results Searching

.travis.yml

Blame
  • .travis.yml 273 B
    language: python
    python:
      - 2.6
      - 2.7
    
    branches:
      except:
        - master
    
    cache: pip
    
    before_script:
     - chmod +x ./tests/all_tests.py
    
    script:
      - ./tests/all_tests.py
    
    after_failure:
      - cat ./Logs/sickrage.log
    
    notifications:
      irc: "irc.freenode.net#sickrage-updates"