-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtox.ini
46 lines (42 loc) · 1.02 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
[tox]
env_list = py39, linters
no_package = false
[testenv]
commands =
pytest --junitxml=unit-tests.xml --cov=wazo_call_logd --cov-report term --cov-report xml:coverage.xml wazo_call_logd {posargs}
# celery 5.0.0 is not compatible with pip >= 24
set_env =
VIRTUALENV_PIP==23.3.2
deps =
-rrequirements.txt
-rtest-requirements.txt
pytest-cov
[testenv:black]
skip_install = true
deps = black
commands = black --skip-string-normalization .
[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
changedir = integration_tests
pass_env =
INTEGRATION_TEST_TIMEOUT
MANAGE_DB_DIR
TEST_LOGS
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
make cel-db
pytest -v {posargs}
allowlist_externals =
make
sh