.travis.yml 221 B

1234567891011121314
  1. language: python
  2. python:
  3. - "3.3"
  4. - "3.4"
  5. - "3.5"
  6. install:
  7. - pip install nose2
  8. - pip install coveralls
  9. - pip install pylint
  10. script:
  11. - nose2 --with-coverage
  12. - pylint --errors-only
  13. after_success:
  14. coveralls