Skip to content

Commit

Permalink
remove integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vcidst committed Sep 20, 2023
1 parent aff6f54 commit 1dd7d31
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 18 deletions.
8 changes: 0 additions & 8 deletions tests/integration_tests/core/test_lock_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down
11 changes: 1 addition & 10 deletions tests_deployment/docker-compose.integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1dd7d31

Please sign in to comment.