We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3abf938 commit 03e49bdCopy full SHA for 03e49bd
1 file changed
tests/python/conftest.py
@@ -6,6 +6,7 @@
6
import sys
7
from typing import Any
8
9
+import azure_resources as az
10
import pytest
11
12
# Add the shared/python directory to the Python path for all tests
@@ -67,8 +68,6 @@ def _skip_az_run_retry_sleep(monkeypatch: pytest.MonkeyPatch) -> None:
67
68
many tests exercise the failure path (which retries by default).
69
"""
70
- import azure_resources as az # local import: conftest path setup must run first
71
-
72
monkeypatch.setattr(az.time, 'sleep', lambda _seconds: None)
73
74
0 commit comments