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

21 lines
389 B

10 years ago
7 years ago
10 years ago
10 years ago
  1. dist: xenial
  2. language: python
  3. python:
  4. - "3.5"
  5. - "3.6"
  6. - "3.7"
  7. install:
  8. - pip install -r requirements.txt
  9. - pip install braintree coveralls mock mysqlclient reportlab apprise
  10. env:
  11. - DB=sqlite
  12. - DB=mysql
  13. - DB=postgres
  14. services:
  15. - mysql
  16. addons:
  17. postgresql: "9.6"
  18. script:
  19. - coverage run --omit=*/tests/* --source=hc manage.py test
  20. after_success: coveralls
  21. cache: pip