-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
41 lines (32 loc) · 854 Bytes
/
pytest.ini
File metadata and controls
41 lines (32 loc) · 854 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
38
39
40
[pytest]
# PyTest Configuration for flow_segmenter
# Test discovery patterns
python_files = test_*.py
python_classes = Test*
python_functions = test_*
# Directories to search for tests
testpaths = tests
# Add parent directory to Python path
pythonpath = src
# Output options
addopts =
-v
--strict-markers
--tb=short
--disable-warnings
--color=yes
# Markers for organizing tests
markers =
unit: Unit tests
integration: Integration tests
slow: Slow running tests
security: Security-related tests
performance: Performance tests
# Coverage options (if pytest-cov is installed)
# addopts = --cov=flow_segmenter --cov-report=html --cov-report=term-missing
# Ignore certain warnings
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
# Minimum Python version
minversion = 3.12