-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
35 lines (29 loc) · 823 Bytes
/
tox.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[tox]
envlist = py_39, py_310, py_311
[testenv:py_39]
# install pytest in the virtualenv where commands will be executed
docker = py39_docker
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands = pytest
[testenv:py_310]
# install pytest in the virtualenv where commands will be executed
docker = py310_docker
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands = pytest
[testenv:py_311]
# install pytest in the virtualenv where commands will be executed
docker = py311_docker
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/dev-requirements.txt
commands = pytest
[docker:py39_docker]
image = python:3.9-slim-bullseye
[docker:py310_docker]
image = python:3.10-slim-bullseye
[docker:py311_docker]
image = python:3.11-slim-bullseye