forked from ibmresilient/resilient-python-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
41 lines (34 loc) · 920 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
# Tox (https://tox.readthedocs.io/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist = py27, py36, py39, py311, py312
skip_missing_interpreters=True
skip_install=true
skipsdist=true
[testenv]
passenv=TEST_RESILIENT_*
deps =
pytest
pytest-cov
mock
requests-mock ~= 1.12
jinja2 ~= 3.0
setenv =
SETUPTOOLS_SCM_PRETEND_VERSION={env:SETUPTOOLS_SCM_PRETEND_VERSION}
commands =
pip install ../resilient-app-config-plugins
pip install .
pytest --cov --cov-report xml --capture=no -s {posargs} tests/ --durations=0
[coverage:run]
source=resilient
[coverage:report]
omit=*/.tox/*, tests/*
show_missing = true
exclude_lines =
pragma: no cover
^import
^from
[coverage:xml]
output=cov_resilient.xml