Skip to content

Commit

Permalink
chore: fix tox config to pass env
Browse files Browse the repository at this point in the history
  • Loading branch information
JanMalte committed Jul 20, 2023
1 parent 1e8dc52 commit eced83f
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[tox]
envlist = py{27,35,36}-django{18,19,110,111}
py{35,36,37,38}-django{111,20}
envlist =
py{27,35,36}-django{18,19,110,111}
py{35,36,37,38}-django{111,22}
py{36,37,38,39,310}-django{30,31,32}
py{38,39,310}-django{40,41}
[testenv]
Expand All @@ -15,16 +16,16 @@ deps =
django19: Django>=1.9,<1.10
django110: Django>=1.10,<1.11
django111: Django>=1.11,<1.12
django20: Django >=2.0.0,<3.0.0
django30: Django >=3.0,<3.1
django31: Django >=3.1,<3.2
django32: Django >=3.2
django40: Django >=4.0,<4.1
django41: Django ==4.1a1
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
django40: Django>=4.0,<4.1
django41: Django>=4.1,<4.2
setenv =
PIP_ALLOW_EXTERNAL=true
DJANGO_SETTINGS_MODULE=session_security.tests.project.settings
passenv = CI DISPLAY DBDIFF_* TEST_* TOX_* SAUCE_*
passenv = CI,DISPLAY,DBDIFF_*,TEST_*,TOX_*,SAUCE_*

[testenv:checkqa]
basepython = python2.7
Expand All @@ -35,10 +36,6 @@ deps =

[gh-actions]
python =
2.7: py27
3.5: py35
3.6: py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310

0 comments on commit eced83f

Please sign in to comment.