소스 검색

Added an integration test for #1921 (#5009)

* Added an integration test for #1921.

* Happify lint.

* Added timeout to `g.get()`.

* Fix usage error.

* Change to tsum.
Omer Katz 6 년 전
부모
커밋
0da634c90d
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. 13 0
      t/integration/test_canvas.py

+ 13 - 0
t/integration/test_canvas.py

@@ -601,3 +601,16 @@ class test_chord:
 
         assert len([cr for cr in chord_results if cr[2] != states.SUCCESS]
                    ) == 1
+
+    def test_parallel_chords(self, manager):
+        try:
+            manager.app.backend.ensure_chords_allowed()
+        except NotImplementedError as e:
+            raise pytest.skip(e.args[0])
+
+        c1 = chord(group(add.s(1, 2), add.s(3, 4)), tsum.s())
+        c2 = chord(group(add.s(1, 2), add.s(3, 4)), tsum.s())
+        g = group(c1, c2)
+        r = g.delay()
+
+        assert r.get(timeout=TIMEOUT) == [10, 10]