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

language: python
python:
- "3.5"
- "3.6"
install:
- pip install -r requirements.txt
- pip install braintree coveralls mock mysqlclient reportlab
env:
- DB=sqlite
- DB=mysql
- DB=postgres
addons:
postgresql: "9.6"
script:
- coverage run --omit=*/tests/* --source=hc manage.py test
after_success: coveralls
cache: pip