From d7c21d4ec7934294dbbda618cf1240a59e116a10 Mon Sep 17 00:00:00 2001 From: ozkanonur Date: Tue, 11 Jul 2023 00:52:13 +0300 Subject: [PATCH 1/2] run all tests ignoring the failed ones Signed-off-by: ozkanonur --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03041241d5..4a939b19b8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,7 @@ jobs: - name: Test run: | # wget -O - https://raw.githubusercontent.com/KomodoPlatform/komodo/master/zcutil/fetch-params-alt.sh | bash - cargo test --bins --lib + cargo test --bins --lib --no-fail-fast mac-x86-64-unit: timeout-minutes: 90 @@ -56,7 +56,7 @@ jobs: - name: Test run: | # wget -O - https://raw.githubusercontent.com/KomodoPlatform/komodo/master/zcutil/fetch-params-alt.sh | bash - cargo test --bins --lib --target x86_64-apple-darwin + cargo test --bins --lib --target x86_64-apple-darwin --no-fail-fast win-x86-64-unit: timeout-minutes: 90 @@ -95,7 +95,7 @@ jobs: # Restart-Service docker # Get-Service docker - cargo test --bins --lib + cargo test --bins --lib --no-fail-fast linux-x86-64-mm2-integration: timeout-minutes: 90 @@ -117,7 +117,7 @@ jobs: uses: ./.github/actions/cargo-cache - name: Test - run: cargo test --test 'mm2_tests_main' + run: cargo test --test 'mm2_tests_main' --no-fail-fast # https://docs.github.com/en/actions/learn-github-actions/usage-limits-billing-and-administration#usage-limits # https://github.com/KomodoPlatform/atomicDEX-API/actions/runs/4419618128/jobs/7748266141#step:4:1790 @@ -161,7 +161,7 @@ jobs: uses: ./.github/actions/cargo-cache - name: Test - run: cargo test --test 'mm2_tests_main' + run: cargo test --test 'mm2_tests_main' --no-fail-fast docker-tests: timeout-minutes: 90 @@ -185,7 +185,7 @@ jobs: - name: Test run: | wget -O - https://raw.githubusercontent.com/KomodoPlatform/komodo/master/zcutil/fetch-params-alt.sh | bash - cargo test --test 'docker_tests_main' --features run-docker-tests + cargo test --test 'docker_tests_main' --features run-docker-tests --no-fail-fast wasm: timeout-minutes: 90 From 1413a1d74d2047d3c3a03f4b750522243a9dc065 Mon Sep 17 00:00:00 2001 From: Onur Date: Fri, 14 Jul 2023 14:14:02 +0300 Subject: [PATCH 2/2] Update adex-cli.yml --- .github/workflows/adex-cli.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/adex-cli.yml b/.github/workflows/adex-cli.yml index ae5ac8076f..1265d28d46 100644 --- a/.github/workflows/adex-cli.yml +++ b/.github/workflows/adex-cli.yml @@ -70,7 +70,7 @@ jobs: - name: Start testing run: | - cargo test --manifest-path ./mm2src/adex_cli/Cargo.toml + cargo test --manifest-path ./mm2src/adex_cli/Cargo.toml --no-fail-fast build: timeout-minutes: 60