Nik Nyby 6933e45dc9 enable automated testing on python 3.5
Drops support for python 3.3, since django no longer supports
it. See the failure here:
  https://travis-ci.org/tzangms/django-bootstrap-form/jobs/94785903

If python 3.3 support is still needed, we can configure it to
run only on versions of django < 1.9.
2015-12-03 21:11:59 -05:00

16 lines
194 B
YAML

language: python
python:
- "2.7"
- "3.4"
- "3.5"
install:
- pip install coverage coveralls
script:
- coverage run --source=bootstrapform setup.py test
after_success:
- coveralls