loan / pytest.ini
Sunny2902's picture
Upload 17 files
4af1c21 verified
raw
history blame contribute delete
340 Bytes
[pytest]
# Custom markers for categorizing tests
markers =
unit: tests a single component in isolation, e.g., a method or function (fast).
integration: tests interactions between components or with external systems, e.g., a scikit-learn transformer and pipeline (slower).
e2e: tests a running application end-to-end (very slow).