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
45 lines (39 loc) · 680 Bytes
/
Copy pathtox.ini
File metadata and controls
45 lines (39 loc) · 680 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
[tox]
isolated_build = True
envlist =
pep
py27
py35
py36
py37
py38
py39
py310
[testenv]
deps =
-rrequirements.txt
delayed-assert
pytest-cov
pytest-parallel
setenv =
AGENT_NO_ANALYTICS = 1
commands = pytest --cov={envsitepackagesdir}/pytest_reportportal --cov-report=xml tests/ -s -vv
[testenv:pep]
skip_install = True
deps = pre-commit>=1.11.0
commands = pre-commit run --all-files --show-diff-on-failure
[testenv:py27]
deps =
-rrequirements.txt
delayed-assert
mock
pytest-cov
[gh-actions]
python =
2.7: py27
3.5: py35
3.6: pep, py36
3.7: py37
3.8: py38
3.9: py39
3.10: py310