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.

17 lines
338 B

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