forked from geex-arts/django-jet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
44 lines (44 loc) · 905 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
34
35
36
37
38
39
40
41
42
43
44
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
- 3.4
- pypy
env:
- DJANGO=1.6.11
- DJANGO=1.7.7
- DJANGO=1.8.3
- DJANGO=1.9.8
- DJANGO=1.10.0
before_install:
- export DJANGO_SETTINGS_MODULE=jet.tests.settings
install:
- pip install -q Django==$DJANGO --use-mirrors
- pip install . --use-mirrors
- pip install coverage==3.7.1
- pip install coveralls==0.5
script:
- coverage run --source=jet --omit=*/migrations/*,*/south_migrations/*,*/tests/* manage.py test jet
after_success:
- coverage report
- coveralls
matrix:
exclude:
- python: 2.6
env: DJANGO=1.7.7
- python: 2.6
env: DJANGO=1.8.3
- python: 2.6
env: DJANGO=1.9.8
- python: 3.2
env: DJANGO=1.9.8
- python: 3.3
env: DJANGO=1.9.8
- python: 2.6
env: DJANGO=1.10.0
- python: 3.2
env: DJANGO=1.10.0
- python: 3.3
env: DJANGO=1.10.0