forked from ibmresilient/resilient-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
56 lines (44 loc) · 1.06 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
[tox]
envlist = py27, py36, py39, py311, py312
skip_install=true
skipsdist=true
[testenv:UNIT]
deps =
pytest
pylint
mock
requests
requests-mock ~= 1.12; python_version>="3.6"
requests-mock < 1.12; python_version=="2.7"
pytest-cov
pathlib ; python_version=="2.7"
setenv =
SETUPTOOLS_SCM_PRETEND_VERSION={env:SETUPTOOLS_SCM_PRETEND_VERSION}
commands =
pip install ../resilient-app-config-plugins
pip install ../resilient
pip install ../resilient-lib
pip install ../resilient-circuits
pip install .
pytest --cov --cov-report xml --capture=no tests/unit/ --durations=0
[testenv:INT]
deps =
pytest
requests
setenv =
APP_CONFIG_FILE={env:TRAVIS_BUILD_DIR}/mock_app.config
commands =
pip install ../resilient
pip install .
pytest --capture=no tests/integration/
[coverage:run]
source=resilient_sdk
[coverage:report]
omit=*/.tox/*, tests/*, resilient_sdk/data/*
show_missing = true
exclude_lines =
pragma: no cover
^import
^from
[coverage:xml]
output=cov_resilient_sdk.xml