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.

22 lines
399 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. - "3.8"
  8. install:
  9. - pip install -r requirements.txt
  10. - pip install braintree coveralls mock mysqlclient reportlab apprise
  11. env:
  12. - DB=sqlite
  13. - DB=mysql
  14. - DB=postgres
  15. services:
  16. - mysql
  17. addons:
  18. postgresql: "9.6"
  19. script:
  20. - coverage run --omit=*/tests/* --source=hc manage.py test
  21. after_success: coveralls
  22. cache: pip