.travis.yml 325 B

1234567891011121314151617
  1. language: python
  2. python:
  3. - "2.7"
  4. - "3.4"
  5. - "3.5"
  6. - "3.6"
  7. # command to install dependencies
  8. install:
  9. - pip install -r requirements.txt
  10. - pip install coveralls
  11. - pip install .
  12. # command to run tests, e.g. python setup.py test
  13. script:
  14. nosetests --with-coverage --cover-package=neo
  15. after_success:
  16. coveralls