From 67aae92f50491c603fa86080ccc0b2b30c620ab9 Mon Sep 17 00:00:00 2001 From: Mike Rosengrant Date: Thu, 7 Sep 2023 01:06:00 -0400 Subject: [PATCH] remove test redis file --- testing/integration/__init__.py | 0 testing/integration/test_redis_interface.py | 17 ----------------- 2 files changed, 17 deletions(-) delete mode 100644 testing/integration/__init__.py delete mode 100644 testing/integration/test_redis_interface.py diff --git a/testing/integration/__init__.py b/testing/integration/__init__.py deleted file mode 100644 index e69de29bb..000000000 diff --git a/testing/integration/test_redis_interface.py b/testing/integration/test_redis_interface.py deleted file mode 100644 index dc55f3be6..000000000 --- a/testing/integration/test_redis_interface.py +++ /dev/null @@ -1,17 +0,0 @@ -import os -import sys - -root_path = os.path.dirname(os.path.dirname(os.path.dirname(os.path.abspath(__file__)))) -sys.path.insert(0, root_path) -from nanome.beta.redis_interface import PluginInstanceRedisInterface -REDIS_HOST = 'localhost' -REDIS_PORT = 6379 -REDIS_PASSWORD = None -REDIS_CHANNEL = 'LVPL8' -plugin = PluginInstanceRedisInterface(REDIS_HOST, REDIS_PORT, REDIS_PASSWORD, REDIS_CHANNEL) -plugin.connect() -shallow_comps = plugin.request_complex_list() -comp_ids = [comp.index for comp in shallow_comps] -comps = plugin.request_complexes(comp_ids) -for comp in comps: - assert len(list(comp.atoms)) > 0