Some checks failed
Smoke Test / smoke (push) Has been cancelled
Merge PR #613
10 lines
336 B
Python
10 lines
336 B
Python
# conftest.py — root-level pytest configuration
|
|
# Issue #607: prevent operational *_test.py scripts from being collected
|
|
|
|
collect_ignore = [
|
|
# Pre-existing broken tests (syntax/import errors, separate issues):
|
|
"timmy-world/test_trust_conflict.py",
|
|
"uni-wizard/v2/tests/test_v2.py",
|
|
"uni-wizard/v3/tests/test_v3.py",
|
|
]
|