forked from django-commons/django-simple-history
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
34 lines (28 loc) · 689 Bytes
/
.travis.yml
File metadata and controls
34 lines (28 loc) · 689 Bytes
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
language: python
python:
- 2.6
- 2.7
- 3.2
- 3.3
env:
- DJANGO=Django==1.3.7
- DJANGO=Django==1.4.5
- DJANGO=Django==1.5.1
- DJANGO=https://github.com/django/django/tarball/stable/1.6.x
- DJANGO=https://github.com/django/django/tarball/master
install:
- pip install coverage coveralls $DJANGO --use-mirrors
script: coverage run -a setup.py test
matrix:
exclude:
- python: 2.6
env: DJANGO=https://github.com/django/django/tarball/master
- python: 3.2
env: DJANGO=Django==1.3.7
- python: 3.3
env: DJANGO=Django==1.3.7
- python: 3.2
env: DJANGO=Django==1.4.5
- python: 3.3
env: DJANGO=Django==1.4.5
after_success: coveralls