From 5563c54eb11fe674f69feb11edae25a47255648f Mon Sep 17 00:00:00 2001 From: librelois <c@elo.tf> Date: Wed, 13 Jul 2022 02:12:22 +0200 Subject: [PATCH] ci: not execute live tests on jobs tests_debug & tests_release --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fba75a181..626da5ddf 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -158,7 +158,7 @@ tests_debug: DUNITER_BINARY_PATH: "../build/duniter" DUNITER_END2END_TESTS_SPAWN_NODE_TIMEOUT: "20" script: - - cargo test --workspace --exclude duniter-end2end-tests + - cargo test --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests - cargo cucumber -i balance* - cargo cucumber -i monetary* - cargo cucumber -i transfer* @@ -182,7 +182,7 @@ tests_release: DUNITER_BINARY_PATH: "../build/duniter" DUNITER_END2END_TESTS_SPAWN_NODE_TIMEOUT: "20" script: - - cargo test --workspace --exclude duniter-end2end-tests + - cargo test --workspace --exclude duniter-end2end-tests --exclude duniter-live-tests - cargo cucumber -i balance* - cargo cucumber -i monetary* - cargo cucumber -i transfer* -- GitLab