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 288 B

6 years ago
1234567891011121314
  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>=3.6
  8. - pip install pytest-cov
  9. # command to run tests
  10. script:
  11. - pytest --cov=./
  12. after_success:
  13. - bash <(curl -s https://codecov.io/bash)