.travis.yml 295 B

123456789101112131415
  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