Spaces:
Sleeping
Sleeping
File size: 487 Bytes
b87bd2d | 1 2 3 4 5 6 7 8 9 10 | [pytest]
# A fresh clone running bare `pytest` must be green and deterministic.
# The real suite lives in tests/. backend/providers/_smoke_test.py is a
# MANUAL provider smoke script (run via `python -m backend.providers._smoke_test`),
# not a pytest suite β its `test_*` async fns would otherwise be auto-collected
# and hit the network. Scoping collection to tests/ keeps `pytest` == the
# 215-test gate, with no collection errors on a clean checkout.
testpaths = tests
addopts = -q
|