forked from eavanvalkenburg/pysiaalarm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
22 lines (22 loc) · 712 Bytes
/
pytest.ini
File metadata and controls
22 lines (22 loc) · 712 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[pytest]
# Specify command line options as you would do when invoking pytest directly.
# e.g. --cov-report html (or xml) for html/xml output or --junitxml junit.xml
# in order to write a coverage file that can be read by Jenkins.
# CAUTION: --cov flags may prohibit setting breakpoints while debugging.
# Comment those flags to avoid this py.test issue.
addopts =
--cov pysiaalarm --cov-report term-missing
-vvv
norecursedirs =
dist
build
.tox
testpaths = tests
python_classes = testSIA
# Use pytest markers to select/deselect specific tests
markers =
sync
aio
both
# slow: mark tests as slow (deselect with '-m "not slow"')
# system: mark end-to-end system tests