We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28abd08 commit e388455Copy full SHA for e388455
sdk/conftest.py
@@ -23,7 +23,6 @@
23
# IN THE SOFTWARE.
24
#
25
# --------------------------------------------------------------------------
26
-import os
27
import pytest
28
29
# In instances where packages do not require azure-sdk-tools we need to make sure that the following imports do not fail.
@@ -51,7 +50,7 @@ def pytest_runtest_setup(item):
51
50
if is_playback_test_marked:
52
from devtools_testutils import is_live
53
54
- if is_live() and os.environ.get("AZURE_SKIP_LIVE_RECORDING", "").lower() == "true":
+ if is_live():
55
pytest.skip("playback test only")
56
57
0 commit comments