forked from pallets-eco/wtforms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
33 lines (30 loc) · 862 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
language: python
python:
- 2.6
- 2.7
- 3.3
- pypy
env:
global:
- SQLALCHEMY=SQLAlchemy==0.8.5
- DATEUTIL=python-dateutil==2.1
- LOCALFLAVOR=
matrix:
- DJANGO=Django==1.4.10
- DJANGO=Django==1.5.4 DATEUTIL=python-dateutil==2.2 SQLALCHEMY=SQLAlchemy==0.9.3
- DJANGO=Django==1.5.5 LOCALFLAVOR=django-localflavor SQLALCHEMY=SQLAlchemy==0.7.10
- DJANGO=Django==1.6 LOCALFLAVOR=django-localflavor
matrix:
exclude:
- python: 3.3
env: DJANGO=Django==1.4.10
# command to install dependencies
install:
- "pip install $DJANGO $DATEUTIL $LOCALFLAVOR $SQLALCHEMY --use-mirrors"
- "pip install . --use-mirrors"
- "pip install -r tests/test_requirements.txt --use-mirrors"
# command to run tests
script: "coverage run tests/runtests.py --with-pep8 --force-all"
after_success:
- pip install coveralls
- coveralls