Skip to content

Commit

Permalink
changed the changelog.md text
Browse files Browse the repository at this point in the history
  • Loading branch information
marktennyson committed Jan 11, 2023
1 parent dabbebd commit 6222f1b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,5 +50,4 @@

## 0.2.1
- `Fixed` aioredis issue with python 3.11.
- `Fixed` httpx library issue.
- `Fixed` fakeredis issue.
- `Fixed` httpx library issue.
16 changes: 8 additions & 8 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ def default_checker():
# await test.redis_client.flushall()
# await test.close_connections()

@pytest.fixture
@pytest.mark.asyncio
async def redis_checker(scope="redis_config"):
test = DefaultChecker(db_provider="redis")
test.redis_client = fakeredis.aioredis.FakeRedis()
yield test
await test.redis_client.flushall()
await test.close_connections()
# @pytest.fixture
# @pytest.mark.asyncio
# async def redis_checker(scope="redis_config"):
# test = DefaultChecker(db_provider="redis")
# test.redis_client = fakeredis.aioredis.FakeRedis()
# yield test
# await test.redis_client.flushall()
# await test.close_connections()


@pytest.fixture(autouse=True)
Expand Down

0 comments on commit 6222f1b

Please sign in to comment.