-
Notifications
You must be signed in to change notification settings - Fork 7
/
tox.ini
83 lines (78 loc) · 2.07 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
80
81
82
83
[tox]
env_list = py39, linters
no_package = false
[testenv]
commands =
pytest --junitxml=unit-tests.xml --cov=wazo_auth --cov-report term --cov-report xml:coverage.xml {posargs} wazo_auth
deps =
-rrequirements.txt
-rtest-requirements.txt
pytest-cov
[testenv:linters]
base_python = python3.10
skip_install = true
deps = pre-commit
commands = pre-commit run --all-files
[testenv:integration]
base_python = python3.9
use_develop = true
deps = -rintegration_tests/test-requirements-for-tox.txt
change_dir = integration_tests
pass_env =
INTEGRATION_TEST_TIMEOUT
TEST_LOGS
WAZO_TEST_DOCKER_LOGS_DIR
WAZO_TEST_DOCKER_LOGS_ENABLED
WAZO_TEST_DOCKER_OVERRIDE_EXTRA
WAZO_TEST_NO_DOCKER_COMPOSE_PULL
WAZO_TEST_PROFILING_DIR
commands =
make test-setup
pytest {posargs:suite/}
allowlist_externals =
make
[testenv:performance]
base_python = python3.9
use_develop = true
deps = -rintegration_tests/test-requirements-for-tox.txt
change_dir = integration_tests
pass_env =
INTEGRATION_TEST_TIMEOUT
TEST_LOGS
WAZO_TEST_DOCKER_LOGS_DIR
WAZO_TEST_DOCKER_LOGS_ENABLED
WAZO_TEST_DOCKER_OVERRIDE_EXTRA
WAZO_TEST_NO_DOCKER_COMPOSE_PULL
WAZO_TEST_PROFILING_DIR
commands =
make test-setup
pytest {posargs:performance_suite/}
allowlist_externals =
make
[testenv:functional]
base_python = python3.9
use_develop = true
deps = -rintegration_tests/test-requirements-for-tox.txt
change_dir = integration_tests
pass_env =
INTEGRATION_TEST_TIMEOUT
TEST_LOGS
WAZO_SAML_CONFIG_FILE
WAZO_SAML_LOGIN
WAZO_SAML_PASSWORD
WAZO_TEST_DOCKER_LOGS_DIR
WAZO_TEST_DOCKER_LOGS_ENABLED
WAZO_TEST_DOCKER_OVERRIDE_EXTRA
WAZO_TEST_NO_DOCKER_COMPOSE_PULL
WAZO_TEST_PROFILING_DIR
# Uncomment the two following lines for tests with --headed browser
# XAUTHORITY
# DISPLAY
# end headed
commands =
make test-setup
pytest {posargs:functional_suite/}
# you can get the playwright GUI debugger if you replace previous line by the next one
# PWDEBUG=1 pytest -s {posargs:functional_suite/}
allowlist_externals =
make