Unverified Commit b77f9765 authored by mohammedabdulwahhab's avatar mohammedabdulwahhab Committed by GitHub
Browse files

fix: remove bare pytest_asyncio import breaking pre-commit (#7453)


Signed-off-by: default avatarmohammedabdulwahhab <furkhan324@berkeley.edu>
Co-authored-by: default avatarClaude Opus 4.6 (1M context) <noreply@anthropic.com>
parent cf08f794
...@@ -14,9 +14,15 @@ import signal ...@@ -14,9 +14,15 @@ import signal
import time import time
import pytest import pytest
import pytest_asyncio # noqa: F401 — ensures the plugin is available
from gpu_memory_service.failover_lock.flock import FlockFailoverLock from gpu_memory_service.failover_lock.flock import FlockFailoverLock
pytestmark = [
pytest.mark.pre_merge,
pytest.mark.unit,
pytest.mark.gpu_0,
pytest.mark.fault_tolerance,
]
@pytest.fixture @pytest.fixture
def lock_path(tmp_path): def lock_path(tmp_path):
......
...@@ -112,6 +112,8 @@ STUB_MODULES = [ ...@@ -112,6 +112,8 @@ STUB_MODULES = [
"gpu_memory_service", "gpu_memory_service",
"gpu_memory_service.common", "gpu_memory_service.common",
"gpu_memory_service.common.utils", "gpu_memory_service.common.utils",
"gpu_memory_service.failover_lock",
"gpu_memory_service.failover_lock.flock",
"prometheus_client", "prometheus_client",
"prometheus_client.parser", "prometheus_client.parser",
"sklearn", "sklearn",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment