Skip to content

Commit 49cbf69

Browse files
committed
add celery config
1 parent 4ef765f commit 49cbf69

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

integration_tests/conftest.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import pytest
2+
3+
from taskbadger.mug import Badger, Settings
4+
5+
6+
@pytest.fixture(scope="session", autouse=True)
7+
def celery_config():
8+
"""Test against Redis to ensure serialization works"""
9+
return {
10+
"broker_url": "redis://localhost:6379",
11+
"result_backend": "redis://localhost:6379",
12+
}

0 commit comments

Comments
 (0)