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 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