Pārlūkot izejas kodu

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 gadi atpakaļ
vecāks
revīzija
0da634c90d
1 mainītis faili ar 13 papildinājumiem un 0 dzēšanām
  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]