Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(sandbox): use sp-wasm-interface-common instead of sp-wasm-interface #3603

Merged
merged 6 commits into from
Dec 22, 2023
Merged
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions scripts/src/test.sh
clearloop marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,15 @@ gsdk_test() {
if [ "$CARGO" = "cargo xwin" ]; then
$CARGO test -p gsdk --no-fail-fast "$@"
else
cargo nextest run -p gsdk --profile ci --no-fail-fast "$@"
cargo nextest run -p gsdk --profile ci --no-fail-fast "$@" --retries 3
fi
}

gcli_test() {
if [ "$CARGO" = "cargo xwin" ]; then
$CARGO test -p gcli --no-fail-fast "$@"
else
cargo nextest run -p gcli --profile ci --no-fail-fast "$@"
cargo nextest run -p gcli --profile ci --no-fail-fast "$@" --retries 3
fi
}

Expand All @@ -67,7 +67,7 @@ client_tests() {
if [ "$CARGO" = "cargo xwin" ]; then
$CARGO test -p gclient --no-fail-fast "$@"
else
cargo nextest run -p gclient --no-fail-fast "$@"
cargo nextest run -p gclient --no-fail-fast "$@" --retries 3
fi
}

Expand Down
Loading