mirror of
https://github.com/vllm-project/vllm.git
synced 2026-08-11 16:28:16 +00:00
Signed-off-by: Bill Nell <[email protected]> Co-authored-by: Robert Shaw <[email protected]>
15 lines
353 B
Python
15 lines
353 B
Python
# SPDX-License-Identifier: Apache-2.0
|
|
# SPDX-FileCopyrightText: Copyright contributors to the vLLM project
|
|
import pytest
|
|
|
|
|
|
def pytest_addoption(parser):
|
|
parser.addoption(
|
|
"--subtests", action="store", type=str, default=None, help="subtest ids"
|
|
)
|
|
|
|
|
|
@pytest.fixture
|
|
def subtests(request):
|
|
return request.config.getoption("--subtests")
|