.travis.yml 366 B

1234567891011
  1. language: python
  2. python:
  3. - "2.7"
  4. # command to install dependencies
  5. before_install:
  6. - sudo add-apt-repository $(cat install/files/travis_repo_trusty_requirements.txt)
  7. - sudo apt-get update
  8. - sudo apt-get install $(cat install/files/deb-packages_requirements.txt)
  9. install: "pip install -r install/files/python_requirements.txt"
  10. # command to run tests
  11. script: pytest