Private GIT

Skip to content
Snippets Groups Projects
Select Git revision
  • 4423fe95002315b812b4ef9867ea6df7d94c2083
  • master default protected
  • fix_nzb_cat
  • develop
  • guessit2-minimal
  • ssl_warning
  • UHD-qualities
  • fix_providers8
  • !
  • tvvault
  • provider_alpharatio
  • v5.1.1
  • v5.1
  • v5.0.3
  • v5.0.2
  • v5.0.1
  • v5.0
  • v4.2.1.07
  • v4.2.1.06
  • v4.2.1.05
  • v4.2.1.04
  • v4.2.1.03
  • v4.2.1.02
  • v4.2.1.01
  • v4.2.1.0
  • v4.2.0.6
  • v4.2.0.5
  • v4.2.0.4
  • v4.2.0.3
  • v4.2.0.2
  • v4.2.0.1
31 results

.travis.yml

Blame
  • .travis.yml 658 B
    language:
      - python
    
    python: 2.7.9
    
    sudo: false
    
    branches:
      except:
        - master
    
    before_install:
      - npm install -g grunt-cli
      - npm install -g bower
      - cd .build && npm install && bower install && cd ..
    
    install:
        - pip install coveralls
    
    script:
      - cd .build && grunt travis && cd ..
      - coverage run --source sickbeard,sickrage,SickBeard.py tests/all_tests.py
    
    cache:
      directories:
        - $HOME/.cache/pip
        - .build/bower_components
        - .build/node_modules
    
    after_success: coveralls
    
    after_failure:
      - cat ./Logs/sickrage.log
    
    notifications:
      irc: "irc.freenode.net#sickrage-builds"
    
      email:
        on_success: change
        on_failure: change