-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathtox.ini
More file actions
42 lines (39 loc) · 946 Bytes
/
tox.ini
File metadata and controls
42 lines (39 loc) · 946 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
[tox]
env_list = py311, linters
no_package = false
[testenv]
set_env =
SQLALCHEMY_WARN_20=1
commands =
pytest --junitxml=unit-tests.xml --cov=wazo_chatd --cov-report term --cov-report xml:coverage.xml wazo_chatd
deps =
-rrequirements.txt
-rtest-requirements.txt
pytest-cov
[testenv:integration]
base_python = python3.11
use_develop = true
deps = -rintegration_tests/test-requirements-for-tox.txt
change_dir = integration_tests
set_env =
SQLALCHEMY_WARN_20=1
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
[testenv:linters]
base_python = python3.11
skip_install = true
deps = pre-commit
commands = pre-commit run --all-files