Skip to content

Commit

Permalink
Merge pull request #14 from StreetVoice/fix/tox-ini
Browse files Browse the repository at this point in the history
fix tox.ini
  • Loading branch information
song1980 committed Mar 2, 2021
2 parents 9c8b2c6 + 3c82446 commit 08248e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion runtests.py
Expand Up @@ -25,7 +25,7 @@
],
SITE_ID=1,
DEBUG=False,
ROOT_URLCONF='',
ROOT_URLCONF='djcelery_ses.urls',
CELERY_EMAIL_BACKEND='django.core.mail.backends.locmem.EmailBackend',
TEST_RUNNER='djcelery.contrib.test_runner.CeleryTestSuiteRunner',
)
Expand Down
9 changes: 5 additions & 4 deletions tox.ini
@@ -1,15 +1,16 @@
[tox]
envlist = {py27,py36}-dj{18,19,110,111,20}
envlist =
py{36,37}-dj{18,19,110,111}
py38-dj{111,20}
skipsdist=True

[testenv]
basepython =
py27: python2.7
py36: python3.6
py37: python3.7
py38: python3.8
deps =
pytest
dj18: django>=1.8,<1.9
dj19: django>=1.9,<1.10
dj110: django>=1.10,<1.11
dj111: django>=1.11
commands = python setup.py test

0 comments on commit 08248e9

Please sign in to comment.