forked from intel/ai-containers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
50 lines (44 loc) · 944 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
39
40
41
42
43
44
45
46
47
48
49
50
[tox]
env_list =
py{38,39,310,311,312}
coverage
source =
test-runner/*
[testenv]
passenv = GITHUB_*, DOCKER_*
deps =
-r test-runner/dev-requirements.txt
commands =
python -m coverage run -m pytest test-runner/tests/utest.py -W ignore::UserWarning
coveralls
pythonpath = tests
setenv =
CACHE_REGISTRY = {env:CACHE_REGISTRY}
COVERALLS_REPO_TOKEN= {env:COVERALLS_REPO_TOKEN}
PATH = {env:PATH}:/usr/local/bin/docker
PWD = {env:PWD}
REGISTRY = {env:REGISTRY}
REPO = {env:REPO}
log_cli = false
[coverage:report]
exclude_lines =
if __name__ == "__main__":
omit = utest.py
[coverage:run]
relative_files = true
[coverage:paths]
source =
test-runner/*
[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
parallel_show_output = true
[testenv:clean]
allowlist_externals=/bin/bash
commands =
/bin/bash -c "rm -rf .coverage"
ignore_errors = True