Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip vllm-related tests on non-linux platforms #1357

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ test = [
"huggingface_hub",
"openai>=1.0.0",
"datasets",
"vllm; sys_platform != 'darwin'",
"vllm; sys_platform == 'linux'",
"transformers",
"pillow",
"exllamav2",
Expand Down
14 changes: 14 additions & 0 deletions tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import sys

import pytest


def pytest_collection_modifyitems(config, items):
if sys.platform != "linux":
skip_vllm = pytest.mark.skip(reason="vLLM models can only be run on Linux.")
for item in items:
if "test_integration_vllm" in item.nodeid:
item.add_marker(skip_vllm)
print(
f"WARNING: {item.nodeid} is skipped because vLLM only supports Linux platform (including WSL)."
)
6 changes: 5 additions & 1 deletion tests/generate/test_integration_vllm.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
import pytest
import torch
from pydantic import BaseModel, constr
from vllm.sampling_params import SamplingParams

try:
from vllm.sampling_params import SamplingParams
except ImportError:
pass

import outlines.generate as generate
import outlines.grammars as grammars
Expand Down
Loading