We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4ef765f commit 49cbf69Copy full SHA for 49cbf69
1 file changed
integration_tests/conftest.py
@@ -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