15 lines
336 B
Python
15 lines
336 B
Python
"""
|
|
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)"
|
|
)
|