-
Notifications
You must be signed in to change notification settings - Fork 7
/
tox.ini
38 lines (35 loc) · 866 Bytes
/
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
[tox]
env_list = py39, linters
no_package = false
[testenv]
commands =
pytest --junitxml=unit-tests.xml --cov=wazo_calld --cov-report term --cov-report xml:coverage.xml wazo_calld
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.txt
change_dir = integration_tests
pass_env =
INTEGRATION_TEST_TIMEOUT
TEST_LOGS
WAZO_TEST_COVERAGE_DIR
WAZO_TEST_COVERAGE_ENABLED
WAZO_TEST_DOCKER_LOGS_DIR
WAZO_TEST_DOCKER_LOGS_ENABLED
WAZO_TEST_DOCKER_OVERRIDE_EXTRA
WAZO_TEST_NO_DOCKER_COMPOSE_PULL
commands =
make test-setup
pytest -v {posargs}
allowlist_externals =
make
sh