-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
27 lines (27 loc) · 791 Bytes
/
Copy pathpytest.ini
File metadata and controls
27 lines (27 loc) · 791 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
[pytest]
minversion = 8.0
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
addopts =
-v
-s
--strict-markers
--tb=short
--html=reports/pytest_report.html
--self-contained-html
markers =
smoke: Smoke tests - core critical path
regression: Full regression suite
sanity: Sanity checks after deployment
e2e: End-to-end user journey tests
integration: Integration tests
api: API contract and functional tests
ui: UI interaction tests
slow: Slow running tests (>30s)
flaky: Known flaky tests requiring reruns
parallel: Tests safe for parallel execution
data_driven: Data-driven tests
negative: Negative/error path tests
offline: Static structure tests that run without a browser