Skip to content

Commit 17b5f57

Browse files
committed
tox fixing
1 parent 9669d12 commit 17b5f57

1 file changed

Lines changed: 7 additions & 5 deletions

File tree

tox.ini

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,12 @@
11
[tox]
22
# skipping the setup.py installation/requirement for the moment
33
skipsdist = true
4-
envlist =
4+
envlist = py310
55
#py37,py38,py39,py310 # skipping multiple python distros for the moment
6-
py310
6+
77

88
[testenv]
99
description = Running tests in the corresponding environment
10-
basepython = /usr/bin/python3.10
1110
passenv = *
1211
commands_pre =
1312
python -m pip install --upgrade pip setuptools wheel
@@ -17,6 +16,9 @@ deps =
1716
commands =
1817
{envpython} -m pytest --cov-config=tox.ini
1918

19+
[testenv:py310]
20+
basepython = /usr/bin/python3.10
21+
2022
[testenv:unit]
2123
description = Running UNIT tests in the corresponding environment
2224
commands =
@@ -34,8 +36,8 @@ commands =
3436
{envpython} -m pytest tests/e2e
3537

3638
[testenv:cover]
37-
basepython =
38-
python3.10
39+
basepython = /usr/bin/python3.10
40+
3941
commands =
4042
{envpython} -m pytest \
4143
--cov-report term \

0 commit comments

Comments
 (0)