Skip to content

Fix warnings and resource usage problems in asyncio unittests #2258

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

Merged
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused import, fix whitespace
  • Loading branch information
kristjanvalur committed Jul 25, 2022
commit ea68f788840a1a78077b1ec52eeaaaa9be3da7a8
1 change: 0 additions & 1 deletion tests/test_asyncio/conftest.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import asyncio
import random
import sys
from typing import Union
Expand Down
2 changes: 1 addition & 1 deletion tests/test_asyncio/test_commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def factory(username):
yield factory
for username in usernames:
await r.acl_deluser(username)


@pytest_asyncio.fixture()
async def slowlog(r: redis.Redis):
Expand Down