Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps-dev): Bump pytest-asyncio from 0.21.1 to 0.23.6 in /redis_events #106

Closed
936 changes: 499 additions & 437 deletions redis_events/integration/poetry.lock

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions redis_events/integration/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ pytest-asyncio = "^0.21.0"
asynctest = "^0.13.0"
requests = "^2.31.0"
aiohttp = "^3.7.4"
aries-cloudagent = { version = ">=0.10.3, < 1.0.0" }
fastapi = "^0.109.1"
aries-cloudagent = { version = "0.11.0" }
fastapi = "^0.109.2"
nest-asyncio = "^1.5.5"
pydantic = "^1.8.2"
redis = "^4.1.4"
redis = "^5.0.3"
uvicorn = "0.16.0"

[tool.poetry.dev-dependencies]
Expand Down
3 changes: 2 additions & 1 deletion redis_events/integration/tests/test_events.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,8 @@ def established_connection(faber, alice):
@pytest.mark.asyncio
async def test_base_redis_keys_are_set(redis):
time.sleep(1)
assert await redis.lrange("acapy-record-base", 0, -1) != []
# skip `acapy-record-base` because our custom implementation is not interested in base keys!
# assert await redis.lrange("acapy-record-base", 0, -1) != []
assert await redis.lrange("acapy-record-with-state-base", 0, -1) != []


Expand Down
Loading
Loading