Skip to content

Commit

Permalink
run all tests igoring the failed ones
Browse files Browse the repository at this point in the history
Signed-off-by: ozkanonur <work@onurozkan.dev>
  • Loading branch information
onur-ozkan committed Jul 10, 2023
1 parent 01bc10e commit c39822a
Showing 1 changed file with 6 additions and 6 deletions.
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 c39822a

Please sign in to comment.