-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pytest.ini
60 lines (45 loc) · 1.13 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
54
55
56
57
58
59
60
[pytest]
addopts =
# `pytest-xdist`:
--numprocesses=auto
# `pytest-mon`:
# useful for live testing with `pytest-watch` during development:
#--testmon
# Show 10 slowest invocations:
--durations=10
# A bit of verbosity doesn't hurt:
-v
# Report all the things == -rxXs:
-ra
# Show values of the local vars in errors:
--showlocals
# Autocollect and invoke the doctests from all modules:
# https://docs.pytest.org/en/stable/doctest.html
--doctest-modules
# Dump the test results in junit format:
--junitxml=junit-test-results.xml
# `pytest-cov`:
#--cov=cheroot
#--cov-report term-missing:skip-covered
#--cov-report xml
# --cov-report xml:.test-results/pytest/cov.xml # alternatively move it here
doctest_optionflags = ALLOW_UNICODE ELLIPSIS
#filterwarnings =
# error
junit_duration_report = call
junit_family = xunit2
junit_suite_name = magicbus_test_suite
minversion = 4.6.9
# Optimize pytest's lookup by restricting potentially deep dir tree scan:
norecursedirs =
build
magicbus.egg-info
dist
docs
.cache
.eggs
.git
.github
.tox
testpaths = magicbus/test/
xfail_strict = true