Skip to content

Commit

Permalink
add celery config
Browse files Browse the repository at this point in the history
  • Loading branch information
snopoke committed Jun 3, 2024
1 parent 4ef765f commit 49cbf69
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions integration_tests/conftest.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import pytest

from taskbadger.mug import Badger, Settings


@pytest.fixture(scope="session", autouse=True)
def celery_config():
"""Test against Redis to ensure serialization works"""
return {
"broker_url": "redis://localhost:6379",
"result_backend": "redis://localhost:6379",
}

0 comments on commit 49cbf69

Please sign in to comment.