You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

.travis.yml 267 B

12345678910111213
  1. language: python
  2. python:
  3. - "3.6"
  4. # command to install dependencies
  5. install:
  6. - pip install --quiet -r requirements.txt
  7. - pip install pytest pytest-cov
  8. # command to run tests
  9. script:
  10. - pytest --cov=./
  11. after_success:
  12. - bash <(curl -s https://codecov.io/bash)