Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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