-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
30 lines (26 loc) · 1006 Bytes
/
pytest.ini
File metadata and controls
30 lines (26 loc) · 1006 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
# ==========================================
# pytest.ini - Pytest Configuration File
# ==========================================
[pytest]
testpaths = tests
addopts =
-v
--capture=tee-sys
--html=reports/myreport.html
--self-contained-html
# Removed xdist and browser options for async compatibility
base_url = https://k11softwaresolutions.com
# ------------------------------
# Custom Markers
# ------------------------------
markers =
sanity: marks a sanity test (basic quick check)
regression: marks a regression test (full end-to-end validation)
datadriven: marks a datadriven test
end_to_end: marks an end-to-end test
playwright_example: mark Playwright example tests
no_base_url_navigation: disables default navigation to base_url in page fixture for this test
ai: marks tests that use AI-assisted features
smoke: quick smoke tests
device: device emulation / mobile-focused tests
demo: demo-ready tests (screenshots + deterministic checks)