forked from fabriziosalmi/certmate
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
46 lines (44 loc) · 1.18 KB
/
Copy pathpytest.ini
File metadata and controls
46 lines (44 loc) · 1.18 KB
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
[pytest]
testpaths = tests
addopts = -v --tb=short --strict-markers --strict-config
python_files = test_*.py
python_functions = test_*
python_classes = Test*
log_cli_level = INFO
log_file_level = INFO
log_file = pytest.log
markers =
unit: Unit tests
integration: Integration tests
slow: Slow running tests
api: API tests
dns: DNS provider tests
e2e: End-to-end tests requiring a running server
ui: Playwright browser tests
network: needs outbound HTTPS (CA directory reachability)
live: needs a real MinIO / Vault (storage backends)
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
[coverage:run]
branch = True
# modules/ only, matching `--cov=modules` in ci.yml and the Makefile: a bare
# `source = .` folds the tests/ and scripts/ trees (which run at ~100%) into
# the number and hides the real application coverage (#428).
source = modules
omit =
tests/*
venv/*
.venv/*
__pycache__/*
.pytest_cache/*
[coverage:report]
show_missing = True
skip_covered = False
precision = 2
exclude_lines =
pragma: no cover
def __repr__
raise AssertionError
raise NotImplementedError
if __name__ == .__main__.: