.travis.yml 254B

1234567891011
  1. language: python
  2. python:
  3. - "3.4"
  4. install:
  5. - "pip install -r tests_requirements.txt"
  6. - "pip install python-coveralls"
  7. script:
  8. - coverage run tests.py --rcfile=.coveragerc -v && coverage report -m && python3.4 tests.py
  9. after_success:
  10. - coveralls