-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpytest.ini
More file actions
28 lines (24 loc) · 940 Bytes
/
pytest.ini
File metadata and controls
28 lines (24 loc) · 940 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
[pytest]
markers =
smoke: marks tests as smoke tests (quick validation of core functionality)
regression: marks tests as regression tests (comprehensive testing)
negative: marks tests as negative/error scenario tests
boundary: marks tests as boundary/edge case tests
contract: marks tests as API contract validation tests
performance: marks tests as performance validation tests
user_retrieval: marks tests related to user retrieval operations
user_creation: marks tests related to user creation operations
error_scenarios: marks tests for error handling scenarios
api_validation: marks tests for API contract and validation
addopts =
--strict-markers
--tb=short
--alluredir=reports/allure-results
-v
testpaths = tests
python_files = test_*.py
python_classes = Test*
python_functions = test_*
filterwarnings =
ignore::DeprecationWarning
ignore::PendingDeprecationWarning