From 1dd7d317175b2b2139996b8450252b35c1866156 Mon Sep 17 00:00:00 2001 From: vcidst Date: Wed, 20 Sep 2023 13:29:00 +0200 Subject: [PATCH] remove integration tests --- tests/integration_tests/core/test_lock_store.py | 8 -------- tests_deployment/docker-compose.integration.yml | 11 +---------- 2 files changed, 1 insertion(+), 18 deletions(-) diff --git a/tests/integration_tests/core/test_lock_store.py b/tests/integration_tests/core/test_lock_store.py index 9f9c47733070..166b8c46b14c 100644 --- a/tests/integration_tests/core/test_lock_store.py +++ b/tests/integration_tests/core/test_lock_store.py @@ -23,14 +23,6 @@ def test_create_lock_store(redis_lock_store: RedisLockStore): assert lock.conversation_id == conversation_id -def test_lock_store_with_username(): - """connect to a redis instance with username""" - redis = RedisLockStore( - host="localhost", port=6380, username="username1", password="password" - ) - assert redis.red.ping() - - def test_serve_ticket(redis_lock_store: RedisLockStore): conversation_id = "my id 1" diff --git a/tests_deployment/docker-compose.integration.yml b/tests_deployment/docker-compose.integration.yml index e725d6df2484..0999c1ec03b1 100644 --- a/tests_deployment/docker-compose.integration.yml +++ b/tests_deployment/docker-compose.integration.yml @@ -11,16 +11,7 @@ services: retries: 5 ports: - - 6379:6379 - - redis1: - image: redis/redis-stack:6.2.6-v7 - restart: always - environment: - REDIS_ARGS: "--requirepass password --user username1 on >password ~* allcommands --user default off nopass nocommands" - ports: - - "8001:8001" - - "6380:6379" + - 6379:6379 postgres: image: postgres:13