From 2d0ddabed3211570b8857235782c9872fccd5835 Mon Sep 17 00:00:00 2001
From: librelois <c@elo.tf>
Date: Tue, 18 Jan 2022 00:49:04 +0100
Subject: [PATCH] ci: run cucumber tests sequentially

---
 .gitlab-ci.yml | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a94d25204..ae4409c22 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -117,7 +117,9 @@ tests_debug:
     DUNITER_BINARY_PATH: "../build/duniter"
     DUNITER_INTEGRATION_TESTS_SPAWN_NODE_DURATION: "20"
   script:
-    - cargo test
+    - cargo test --workspace --exclude duniter-integration-tests
+    - cargo cucumber -i monetary*
+    - cargo cucumber -i *transfer*
   dependencies:
     - build_debug
 
@@ -131,7 +133,9 @@ tests_release:
     DUNITER_BINARY_PATH: "../build/duniter"
     DUNITER_INTEGRATION_TESTS_SPAWN_NODE_DURATION: "10"
   script:
-    - cargo test
+    - cargo test --workspace --exclude duniter-integration-tests
+    - cargo cucumber -i monetary*
+    - cargo cucumber -i *transfer*
   dependencies:
     - build_release
 
-- 
GitLab