-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpytest.ini
More file actions
63 lines (54 loc) · 1.32 KB
/
pytest.ini
File metadata and controls
63 lines (54 loc) · 1.32 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[pytest]
# pytest configuration file for PyTIA
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Output options
addopts =
-v
--tb=short
--strict-markers
--strict-config
--disable-warnings
# Markers for different test types
markers =
slow: marks tests as slow (deselect with '-m "not slow"')
integration: marks tests as integration tests
system: marks tests as system tests
unit: marks tests as unit tests
gpu: marks tests that require GPU
requires_internet: marks tests that require internet connection
# Minimum version required
minversion = 6.0
# Test paths
testpaths = tests
# Filter warnings
filterwarnings =
ignore::UserWarning
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
# Logging
log_cli = false
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(name)s: %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S
# Coverage configuration (when run with --cov)
[coverage:run]
source = pytia
omit =
*/tests/*
*/test_*
setup.py
[coverage:report]
exclude_lines =
pragma: no cover
def __repr__
if self.debug:
if settings.DEBUG
raise AssertionError
raise NotImplementedError
if 0:
if __name__ == .__main__.:
class .*\bProtocol\):
@(abc\.)?abstractmethod