This repository was archived by the owner on Mar 21, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +37
-44
lines changed Expand file tree Collapse file tree 5 files changed +37
-44
lines changed Original file line number Diff line number Diff line change @@ -7,5 +7,4 @@ docs/_build/
77* .egg-info /
88.idea /
99
10- sqlite.db
11- settings.py
10+ .tox
Original file line number Diff line number Diff line change 1- language : python
1+ sudo : no
22
3- python :
4- - " 2.7"
5- - " 3.3"
6- - " 3.4"
7- - " pypy"
3+ language : python
84
95env :
10- - DJANGO_VERSION="1.4"
11- - DJANGO_VERSION="1.5"
12- - DJANGO_VERSION="1.6"
13- - DJANGO_VERSION="1.7"
6+ - TOXENV=py27-1.4
7+ - TOXENV=py27-1.5
8+ - TOXENV=py27-1.6
9+ - TOXENV=py27-1.7
10+ - TOXENV=py33-1.5
11+ - TOXENV=py33-1.6
12+ - TOXENV=py33-1.7
13+ - TOXENV=py34-1.5
14+ - TOXENV=py34-1.6
15+ - TOXENV=py34-1.7
1416
1517install :
16- - pip install "Django>=${DJANGO_VERSION},<${DJANGO_VERSION}.99"
17- - pip install -r requirements.txt
18-
19- script : python manage.py test drip
18+ - pip install tox
2019
21- matrix :
22- exclude :
23- - python : " 3.3"
24- env : DJANGO_VERSION="1.3"
25- - python : " 3.4"
26- env : DJANGO_VERSION="1.3"
27- - python : " 3.3"
28- env : DJANGO_VERSION="1.4"
29- - python : " 3.4"
30- env : DJANGO_VERSION="1.4"
20+ script :
21+ - tox
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ [tox]
2+ skipsdist = true
3+ args_are_paths = false
4+ envlist =
5+ py27-{1.4,1.5,1.6,1.7},
6+ py{33,34}-{1.5,1.6,1.7}
7+
8+ [testenv]
9+ basepython =
10+ py27: python2.7
11+ py33: python3.3
12+ py34: python3.4
13+ usedevelop = true
14+ commands =
15+ {envpython} -R -Wonce {envbindir}/django-admin.py test -v2 --settings =testsettings drip
16+ deps =
17+ django-timedeltafield ==0.7.2
18+ 1.4: Django>=1.4,<1.5
19+ 1.5: Django>=1.5,<1.6
20+ 1.6: Django>=1.6,<1.7
21+ 1.7: Django>=1.7,<1.8
You can’t perform that action at this time.
0 commit comments