Files
TinyTorch/tests/e2e/conftest.py
Vijay Janapa Reddi 2c5ef2e3cf Fix tagline consistency: Don't import it. Build it.
- Remove 'just' from all instances of the tagline
- Update banner to lead with tagline
- Consistent branding across docs, CLI, and demos
2025-12-02 21:17:41 -05:00

19 lines
695 B
Python

"""
E2E Test Configuration
Registers pytest markers for categorizing tests by speed and purpose.
"""
import pytest
def pytest_configure(config):
"""Register custom markers for E2E tests."""
config.addinivalue_line("markers", "quick: Quick verification tests (~30s total)")
config.addinivalue_line("markers", "module_flow: Module workflow tests (~2min)")
config.addinivalue_line("markers", "milestone_flow: Milestone workflow tests")
config.addinivalue_line("markers", "full_journey: Complete journey tests (~10min)")
config.addinivalue_line("markers", "slow: Slow tests that train models")
config.addinivalue_line("markers", "release: Release validation tests")