.travis.yml 667 B

1234567891011121314151617
  1. language: python
  2. python:
  3. - "2.7"
  4. # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
  5. install:
  6. - "pip install -r requirements.txt"
  7. - "pip install coveralls"
  8. # command to run tests, e.g. python setup.py test
  9. script:
  10. # coverage run --source=pwman setup.py test
  11. # coverage run --omit=pwman/tests/*.py --source=pwman setup.py test
  12. coverage run --omit="pwman/tests/*.py,pwman/ui/mac.py,pwman/ui/win.py,pwman/data/convertdb.py,pwman/data/nodes_multiple_approach.py,pwman/data/models.py,pwman/data/drivers/postgresql.py,pwman/data/drivers/mysql.py" --source=pwman setup.py test
  13. after_success:
  14. coveralls