-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
37 lines (32 loc) · 886 Bytes
/
pytest.ini
File metadata and controls
37 lines (32 loc) · 886 Bytes
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
[pytest]
minversion = 7.0
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-ra
--strict-markers
--strict-config
--cov=src/refdata
--cov-report=term-missing:skip-covered
--cov-report=html
--cov-report=xml
-v
markers =
unit: Fast unit tests (no Docker dependencies)
integration: Integration tests requiring Docker services (Kafka, MinIO, PostgreSQL)
e2e: End-to-end pipeline tests
bitemporal: Tests bitemporal query logic
scd2: Tests SCD Type 2 transformations
slow: Slow-running tests
filterwarnings =
error
ignore::UserWarning
ignore::DeprecationWarning
ignore::pytest.PytestUnraisableExceptionWarning
log_cli = true
log_cli_level = INFO
log_cli_format = %(asctime)s [%(levelname)8s] %(message)s
log_cli_date_format = %Y-%m-%d %H:%M:%S
asyncio_mode = auto