-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpytest.ini
More file actions
69 lines (36 loc) · 1.1 KB
/
Copy pathpytest.ini
File metadata and controls
69 lines (36 loc) · 1.1 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
[tool:pytest]
testpaths = tests testing
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
--tb=short
--strict-markers
--disable-warnings
--color=yes
--durations=10
-n auto
--ignore=GMU_DAEN_2025_02_B-main
--cov=src
--cov=testing
--cov-report=html
--cov-report=term-missing:skip-covered
--cov-report=xml
--cov-fail-under=80
# Parallel execution settings
# Use 'auto' for automatic CPU count detection, or specify a number
# To disable parallel: remove -n auto from addopts or run: pytest -p no:xdist
markers =
unit: Unit tests for individual components
integration: Integration tests for components working together
e2e: End-to-end tests for complete user experience
slow: Slow running tests
network: Tests that require network access
database: Tests that require database access
parallel_safe: Safe to run in parallel
serial: Must run serially
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning
norecursedirs = GMU_DAEN_2025_02_B-main