Skip to content

Commit 1c6165a

Browse files
author
Mishbah Razzaque
committed
Update travis config.
1 parent 4b8a503 commit 1c6165a

File tree

3 files changed

+38
-7
lines changed

3 files changed

+38
-7
lines changed

.travis.yml

+33-2
Original file line numberDiff line numberDiff line change
@@ -3,22 +3,53 @@
33
language: python
44

55
python:
6+
- "3.5"
7+
- "3.4"
68
- "3.3"
79
- "2.7"
10+
- "2.6"
11+
812
env:
913
- DJANGO="Django==1.5"
1014
- DJANGO="Django==1.6"
1115
- DJANGO="Django==1.7"
1216
- DJANGO="Django==1.8"
17+
- DJANGO="Django==1.9"
18+
19+
matrix:
20+
exclude:
21+
# Django 1.5 support Python 2.6.5 Python 2.7, Python 3.2 and 3.3.
22+
# Django 1.6 requires Python (2.6.X, 2.7.X, 3.2.X, and 3.3.X)
23+
# Django 1.7 requires Python 2.7, 3.2, 3.3, or 3.4
24+
# Django 1.8 requiert Python 2.7, 3.2, 3.3, 3.4 or 3.5.
25+
# Django 1.9 requiert Python 2.7, 3.4 or 3.5.
26+
# Python 2.6 support has been dropped for Django 1.7 onwards
27+
- python: "3.4"
28+
env: DJANGO="Django==1.5"
29+
- python: "3.5"
30+
env: DJANGO="Django==1.5"
31+
- python: "3.4"
32+
env: DJANGO="Django==1.6"
33+
- python: "3.5"
34+
env: DJANGO="Django==1.6"
35+
- python: "2.6"
36+
env: DJANGO="Django==1.7"
37+
- python: "3.5"
38+
env: DJANGO="Django==1.7"
39+
- python: "2.6"
40+
env: DJANGO="Django==1.8"
41+
- python: "2.6"
42+
env: DJANGO="Django==1.9"
43+
- python: "3.3"
44+
env: DJANGO="Django==1.9"
1345

1446
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
1547
install:
1648
- pip install $DJANGO --use-mirrors
17-
- pip install wheel==0.24.0 --use-mirrors
1849
- pip install -r requirements-test.txt --use-mirrors
1950

2051
# command to run tests using coverage, e.g. python setup.py test
2152
script: coverage run --source admin_reorder runtests.py
2253

2354
# report coverage to coveralls.io
24-
after_success: coveralls
55+
after_success: coveralls

requirements-test.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
django>=1.5.1
1+
-r requirements.txt
2+
23
coverage
34
coveralls
45
mock>=1.0.1
@@ -7,4 +8,3 @@ django-nose>=1.2
78
flake8>=2.1.0
89
tox>=1.7.0
910

10-
# Additional test requirements go here

requirements.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
django>=1.5.1
2-
wheel==0.23.0
3-
# Additional requirements go here
1+
-e .
2+
3+
wheel==0.24.0

0 commit comments

Comments
 (0)