Skip to content

Commit

Permalink
again
Browse files Browse the repository at this point in the history
  • Loading branch information
svabra committed Jun 29, 2023
1 parent 569cfeb commit 7e2642c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/testing_and_packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
services:
redis:
#image: redis
# use the redis-stack-server without redis-insight
image: redis/redis-stack-server
ports:
- 6379:6379
Expand Down
2 changes: 1 addition & 1 deletion tests/test_investor.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
@pytest.fixture(scope="function", autouse=True)
def setup_redis():
if 'CI' not in os.environ:
os.system('docker run --name redis-unit-test -d -p 6379:6379 redis/redis-stack:latest')
os.system('docker run --name redis-unit-test -d -p 6379:6379 redis/redis-stack-server:latest')
# give some time for the Redis server to start
time.sleep(2)
# Connect to Redis and disable protected mode
Expand Down

0 comments on commit 7e2642c

Please sign in to comment.