File tree 1 file changed +16
-7
lines changed
1 file changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -37,15 +37,17 @@ after_success:
37
37
38
38
matrix :
39
39
include :
40
- - &django_py3
40
+ - &django_1_11
41
41
name : " Django 1.11 test (Python 3.7)"
42
- python : " 3.7"
42
+ env :
43
+ - DJANGO_VERSION=1.11.26
44
+ python : " 3.5"
43
45
install :
44
46
- pip install -U pip
45
- - wget https://github.com/django/django/archive/1.11.18 .tar.gz
46
- - tar xf 1.11.18 .tar.gz
47
- - pip install django-1.11.18 /
48
- - cp ci/test_mysql.py django-1.11.18 /tests/
47
+ - wget https://github.com/django/django/archive/${DJANGO_VERSION} .tar.gz
48
+ - tar xf ${DJANGO_VERSION} .tar.gz
49
+ - pip install django-${DJANGO_VERSION} /
50
+ - cp ci/test_mysql.py django-${DJANGO_VERSION} /tests/
49
51
- pip install .
50
52
51
53
before_script :
@@ -54,7 +56,14 @@ matrix:
54
56
- mysql_tzinfo_to_sql /usr/share/zoneinfo | mysql mysql
55
57
56
58
script :
57
- - cd django-1.11.18 /tests/
59
+ - cd django-${DJANGO_VERSION} /tests/
58
60
- ./runtests.py --parallel=1 --settings=test_mysql
59
61
62
+ - &django_2_2
63
+ << : *django_py27
64
+ name : " Django 2.2 test (Python 3.8)"
65
+ python : " 3.8"
66
+ env :
67
+ - DJANGO_VERSION=2.2.7
68
+
60
69
# vim: sw=2 ts=2 sts=2
You can’t perform that action at this time.
0 commit comments