-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpytest.ini
More file actions
13 lines (13 loc) · 828 Bytes
/
pytest.ini
File metadata and controls
13 lines (13 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
[pytest]
testpaths = tests
markers =
requires_docker: test requires docker run --platform (container checks)
slow: test may run > 5 minutes (e.g. dnf install under s390x QEMU)
online: test hits the real internet (HTTP to AlmaLinux mirrors)
release: content test that validates an AlmaLinux release (stable/beta/pungi)
internal: validates post-check itself (helpers, parsers, suite-level contracts — the tool, not the product). Auto-applied to every test under tests/internal/.
; -v : show each test name with its status instead of dots
; -ra : short summary of all non-passing outcomes at the end
; --tb=short: compact tracebacks on failure (full traceback is noise here —
; the assertion message + 1 frame is what you actually need)
addopts = -v -ra --strict-markers --tb=short