
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.
16 lines
194 B
YAML
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
|