-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtox.ini
79 lines (72 loc) · 1.29 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# tox -e simple
#
#
[tox]
requires =
tox>=4.11.4
deps =
pytest>=7
env_list = py312,py311,py310,py39,py38
#env_list = py311,py312
[testenv]
deps =
-rrequirements.txt
allowlist_externals =
python
pytest
commands=
pytest \
tests/test_base.py \
tests/test_verbose.py \
tests/test_flatdict.py \
tests/test_stopwatch.py \
tests/test_benchmark.py \
tests/test_strdb.py \
tests/test_parameter.py \
tests/test_printer.py \
tests/test_tabulate.py \
tests/test_tables.py \
tests/test_shell.py \
tests/test_shell_commands.py \
tests/test_host.py \
tests/test_ping.py
[testenv:browser]
deps =
-rrequirements.txt
allowlist_externals =
python
pytest
commands=
pytest \
tests/test_browser.py
;
; The following tests do not work
[testenv:broken]
deps =
-rrequirements.txt
allowlist_externals =
python
pytest
commands=
pytest \
tests/test_shell_tests.py \
[testenv:shell]
deps =
-rrequirements.txt
allowlist_externals =
python
pytest
commands=
pytest \
tests/ssh/test_ssh.py
[testenv:mllog]
deps =
-rrequirements.txt
allowlist_externals =
python
pytest
commands=
pytest \
tests/test_stopwatch_mllog_2.py_ignore
tests/test_stopwatch_mllog.py_ignore
tests/test_stopwatch_vs_mllog.py_ignore