File size: 336 Bytes
a402b9b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | """
Pytest configuration for sglang_router Python binding tests.
These are unit tests that run without GPU resources or external dependencies.
"""
import pytest
def pytest_configure(config):
"""Configure pytest markers."""
config.addinivalue_line(
"markers", "unit: mark test as a unit test (no GPU required)"
)
|