Skip to content
Snippets Groups Projects
Verified Commit c95e7135 authored by Daniel Göbel's avatar Daniel Göbel
Browse files

Fix mypy issue in conftest.py

parent b3795ce6
No related branches found
No related tags found
No related merge requests found
......@@ -41,7 +41,7 @@ async def mock_s3_service() -> AsyncGenerator[MockS3ServiceResource, None]:
bucket = await mock_s3.Bucket(settings.RESOURCE_BUCKET)
await bucket.create()
yield mock_s3
mock_s3.delete_bucket(name=settings.ICON_BUCKET, force_delete=True)
mock_s3.delete_bucket(name=settings.RESOURCE_BUCKET, force_delete=True)
@pytest.fixture(scope="session")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment