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 d82300f commit 9d005acCopy full SHA for 9d005ac
1 file changed
src/snowflake/connector/test_util.py
@@ -3,10 +3,10 @@
3
4
import logging
5
import os
6
+import platform
7
from typing import cast
8
-from .compat import IS_LINUX
9
-
+IS_LINUX = platform.system() == "Linux"
10
RUNNING_ON_JENKINS = os.getenv("JENKINS_HOME") is not None
11
REGRESSION_TEST_LOG_DIR = os.getenv("CLIENT_LOG_DIR_PATH_DOCKER")
12
ENABLE_TELEMETRY_LOG = RUNNING_ON_JENKINS and REGRESSION_TEST_LOG_DIR and IS_LINUX
0 commit comments