Files
ray-project--ray/python/ray/serve/tests/test_minimal_installation.py
2026-07-13 13:17:40 +08:00

20 lines
409 B
Python

import os
import sys
import pytest
@pytest.mark.skipif(
os.environ.get("RAY_MINIMAL") != "1",
reason="This test is only run in CI with a minimal Ray installation.",
)
def test_error_msg():
with pytest.raises(ModuleNotFoundError, match=r'.*install "ray\[serve\]".*'):
from ray import serve
serve.start()
if __name__ == "__main__":
sys.exit(pytest.main(["-sv", __file__]))