aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/common/test_framework/conftest.py
diff options
context:
space:
mode:
authorudovichenko-r <udovichenko-r@yandex-team.com>2024-11-18 18:55:10 +0300
committerudovichenko-r <udovichenko-r@yandex-team.com>2024-11-18 19:27:57 +0300
commit9034652d9fcda22d641b8b030a757a3942112f5f (patch)
treecf418ec574ac74e6a3eef6459eeffd35da75aeff /yql/essentials/tests/common/test_framework/conftest.py
parent898c44637b5a3602cc610a0352889be7b897a6a6 (diff)
downloadydb-9034652d9fcda22d641b8b030a757a3942112f5f.tar.gz
YQL-19206 Move contrib/ydb/library/yql/tests/common -> yql/essentials/tests/common
commit_hash:b0bab3353351a5c79f0a64237b103ddba0004fd7
Diffstat (limited to 'yql/essentials/tests/common/test_framework/conftest.py')
-rw-r--r--yql/essentials/tests/common/test_framework/conftest.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/yql/essentials/tests/common/test_framework/conftest.py b/yql/essentials/tests/common/test_framework/conftest.py
new file mode 100644
index 0000000000..675726de78
--- /dev/null
+++ b/yql/essentials/tests/common/test_framework/conftest.py
@@ -0,0 +1,14 @@
+try:
+ from yql_http_file_server import yql_http_file_server
+except ImportError:
+ yql_http_file_server = None
+
+try:
+ from solomon_runner import solomon
+except ImportError:
+ solomon = None
+
+# bunch of useless statements for linter happiness
+# (otherwise it complains about unused names)
+assert yql_http_file_server is yql_http_file_server
+assert solomon is solomon