Skip to content

Commit

Permalink
test(new-flag): run all tests ignoring the failed ones (#1907)
Browse files Browse the repository at this point in the history
* run all tests ignoring the failed ones

Signed-off-by: ozkanonur <work@onurozkan.dev>

* Update adex-cli.yml

---------

Signed-off-by: ozkanonur <work@onurozkan.dev>
  • Loading branch information
onur-ozkan authored Jul 14, 2023
1 parent d9b3cf8 commit b6b527d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/adex-cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit b6b527d

Please sign in to comment.