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.

18 lines
348 B

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