forked from reportportal/agent-python-pytest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
46 lines (38 loc) · 786 Bytes
/
tox.ini
File metadata and controls
46 lines (38 loc) · 786 Bytes
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
36
37
38
39
40
41
42
43
44
45
46
[tox]
isolated_build = True
envlist =
pep
nobdd
py39
py310
py311
py312
py313
py314
[testenv]
deps =
-rrequirements.txt
-rrequirements-dev.txt
-rrequirements-dev-bdd.txt
setenv =
AGENT_NO_ANALYTICS = 1
commands = pytest --cov={envsitepackagesdir}/pytest_reportportal --cov-report=xml tests/ -s -vv
[testenv:nobdd]
deps =
-rrequirements.txt
-rrequirements-dev.txt
setenv =
AGENT_NO_ANALYTICS = 1
commands = pytest tests/ -s -vv --ignore tests/integration/test_bdd.py
[testenv:pep]
skip_install = True
deps = pre-commit>=1.19.0
commands = pre-commit run --all-files --show-diff-on-failure
[gh-actions]
python =
3.9: py39
3.10: pep, nobdd, py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314