File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ commands =
12
12
docker run --rm -v {toxinidir}:/app -v configloader-{envname}-py38-tox:/app/.tox configloader-{envname}-py38-test py38
13
13
docker build --build-arg PYTHON_VERSION =3.9.7 -t configloader-{envname}-py39-test -f Dockerfile.test .
14
14
docker run --rm -v {toxinidir}:/app -v configloader-{envname}-py39-tox:/app/.tox configloader-{envname}-py39-test py39
15
+ docker build --build-arg PYTHON_VERSION =3.11.9 -t configloader-{envname}-py311-test -f Dockerfile.test .
16
+ docker run --rm -v {toxinidir}:/app -v configloader-{envname}-py311-tox:/app/.tox configloader-{envname}-py311-test py311
15
17
16
18
[testenv]
17
19
depends = clean
@@ -20,6 +22,7 @@ setenv =
20
22
PYTHONPATH = {toxinidir}/tests
21
23
usedevelop = true
22
24
deps =
25
+ py311: -r {toxinidir}/requirements/test.txt
23
26
py39: -r {toxinidir}/requirements/test.txt
24
27
py38: -r {toxinidir}/requirements/test.py38.txt
25
28
commands =
@@ -33,7 +36,7 @@ depends =
33
36
[testenv:report]
34
37
skip_install = true
35
38
commands = coverage report -m
36
- depends = py39
39
+ depends = py311
37
40
parallel_show_output = true
38
41
39
42
[coverage:run]
Original file line number Diff line number Diff line change 62
62
resources :
63
63
- bouncerscript
64
64
configloader :
65
- python-versions : [38, 39]
65
+ python-versions : [38, 39, 311 ]
66
66
resources :
67
67
- configloader
68
68
githubscript :
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ envlist =
7
7
bouncerscript-py39
8
8
configloader-py38
9
9
configloader-py39
10
+ configloader-py311
10
11
githubscript-py39
11
12
init-py39
12
13
# iscript and notarization_poller are python 3.8 only
@@ -75,6 +76,11 @@ commands =
75
76
changedir = {toxinidir}/configloader
76
77
commands =
77
78
tox -e py39
79
+
80
+ [testenv:configloader-py311]
81
+ changedir = {toxinidir}/configloader
82
+ commands =
83
+ tox -e py311
78
84
- tox -e coveralls
79
85
80
86
[testenv:init-py39]
You can’t perform that action at this time.
0 commit comments