Skip to content

Commit ed97723

Browse files
committed
Run tests against Django 3.1 instead of 1.11
Django 1.11 (LTS) reached its EOL on 2020-04-01. The current LTS release is 2.2. Django 3.1 was released on 2020-08-04.
1 parent a2e4bc6 commit ed97723

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tox.ini

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
envlist =
33
py{27,34,35,36,37,38}-default
44
py{35,36,37,38}-aiohttp2
5-
py{27,34,35,36,37}-django111
65
py{35,36,37,38}-django22
76
py{36,37,38}-django30
7+
py{36,37,38}-django31
88
coverage-report
99

1010
skip_missing_interpreters = True
@@ -21,10 +21,10 @@ deps =
2121
sqlalchemy
2222
Flask-SQLAlchemy
2323
future
24-
django111: Django==1.11.*
2524
django22: Django==2.2.*
2625
django30: Django==3.0.*
27-
django{111,22,30}: django-fake-model
26+
django31: Django==3.1.*
27+
django{22,30,31}: django-fake-model
2828
pynamodb >= 3.3.1
2929
pymysql
3030
psycopg2
@@ -45,7 +45,7 @@ deps =
4545
commands =
4646
py{27,34}-default: coverage run --source aws_xray_sdk -m py.test tests --ignore tests/ext/aiohttp --ignore tests/ext/aiobotocore --ignore tests/ext/django --ignore tests/test_async_local_storage.py --ignore tests/test_async_recorder.py
4747
py{35,36,37,38}-default: coverage run --source aws_xray_sdk -m py.test --ignore tests/ext/django tests
48-
django{111,22,30}: coverage run --source aws_xray_sdk -m py.test tests/ext/django
48+
django{22,30,31}: coverage run --source aws_xray_sdk -m py.test tests/ext/django
4949
codecov
5050

5151
setenv =

0 commit comments

Comments
 (0)