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

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