forked from ansible/pylibssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pytest.ini
53 lines (49 loc) · 1.09 KB
/
pytest.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
[pytest]
addopts =
# `pytest-xdist`:
-n auto
--durations=10
-v
-ra
--showlocals
--doctest-modules
--junitxml=.test-results/pytest/results.xml
# Fail on non-existing markers:
--strict
--strict-markers
# `pytest-cov`:
-p pytest_cov
--no-cov-on-fail
--cov=pylibsshext
--cov=tests
--cov-report=term-missing:skip-covered
--cov-report=xml:.test-results/pytest/cov.xml
--cov-context=test
--cov-config=.coveragerc
doctest_optionflags = ALLOW_UNICODE ELLIPSIS
empty_parameter_set_mark = xfail
faulthandler_timeout = 30
filterwarnings =
error
ignore:Coverage disabled via --no-cov switch!:pytest.PytestWarning:pytest_cov.plugin
junit_duration_report = call
junit_family = xunit2
junit_logging = all
junit_log_passing_tests = true
junit_suite_name = ansible_pylibssh_test_suite
markers =
smoke: Quick post-build self-check smoke tests
minversion = 4.6.9
norecursedirs =
build
dist
docs
src/pylibsshext.egg-info
.cache
.eggs
.git
.github
.tox
*.egg
testpaths = tests/
xfail_strict = true