Skip to content

Commit 39c30a5

Browse files
committed
Fix testing with Tox + Poetry
Isolated builds are necessary now, and `poetry install` no longer takes `--dev --deploy` options.
1 parent fe4db61 commit 39c30a5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
[tox]
22
# Environment changes have to be manually synced with '.travis.yml'.
3-
envlist = py36,p37,p38,p39,py310
3+
envlist = py36,py37,py38,py39,py310
4+
isolated_build = True
45

56
[pytest]
67
addopts = -v --cov rsa --cov-report term-missing
78

89
[testenv]
910
deps = poetry
1011
commands =
11-
poetry install --dev --deploy
12+
poetry install
1213
poetry run py.test tests/
1314

1415
[testenv:py37]

0 commit comments

Comments
 (0)