forked from ibmresilient/resilient-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
39 lines (31 loc) · 728 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
[tox]
envlist = py27, py36, py39
skip_install=true
skipsdist=true
[testenv:UNIT]
deps =
pytest
pylint
mock
requests
requests-mock
pytest-cov
pathlib ; python_version=="2.7"
setenv =
SETUPTOOLS_SCM_PRETEND_VERSION={env:SETUPTOOLS_SCM_PRETEND_VERSION}
commands =
pip install -e ../resilient
pip install -e ../resilient-lib
pip install -e ../resilient-circuits
pip install -e .
pytest --cov --cov-append --cov-report html --capture=no tests/unit/
[testenv:INT]
deps =
pytest
requests
setenv =
APP_CONFIG_FILE={env:TRAVIS_BUILD_DIR}/mock_app.config
commands =
pip install -e ../resilient
pip install -e .
pytest --capture=no tests/integration/