Skip to content

Run tests against Django 3.1 instead of 1.11 #240

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 11, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
envlist =
py{27,34,35,36,37,38}-default
py{35,36,37,38}-aiohttp2
py{27,34,35,36,37}-django111
py{35,36,37,38}-django22
py{36,37,38}-django30
py{36,37,38}-django31
coverage-report

skip_missing_interpreters = True
Expand All @@ -21,10 +21,10 @@ deps =
sqlalchemy
Flask-SQLAlchemy
future
django111: Django==1.11.*
django22: Django==2.2.*
django30: Django==3.0.*
django{111,22,30}: django-fake-model
django31: Django==3.1.*
django{22,30,31}: django-fake-model
pynamodb >= 3.3.1
pymysql
psycopg2
Expand All @@ -45,7 +45,7 @@ deps =
commands =
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
py{35,36,37,38}-default: coverage run --source aws_xray_sdk -m py.test --ignore tests/ext/django tests
django{111,22,30}: coverage run --source aws_xray_sdk -m py.test tests/ext/django
django{22,30,31}: coverage run --source aws_xray_sdk -m py.test tests/ext/django
codecov

setenv =
Expand Down