Skip to content

Commit 1dd87ef

Browse files
committed
fix: Celery 4.2.2 is also buggy
1 parent 807c319 commit 1dd87ef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/integrations/celery/test_celery.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def dummy_task(x, y):
112112

113113

114114
@pytest.mark.skipif(
115-
(4, 2, 0) <= VERSION < (4, 2, 2),
115+
(4, 2, 0) <= VERSION < (4, 2, 3),
116116
reason="https://github.com/celery/celery/issues/4661",
117117
)
118118
def test_retry(celery, capture_events):

0 commit comments

Comments
 (0)