Skip to content

Commit

Permalink
cargo install nextest
Browse files Browse the repository at this point in the history
  • Loading branch information
pompon0 committed Dec 12, 2022
1 parent cdb24b2 commit 17deacd
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ steps:
- label: "cargo test integration-tests*"
command: |
source ~/.cargo/env && set -eux
cargo install cargo-nextest
cargo nextest run --locked -p 'integration-tests'
timeout: 60
Expand All @@ -28,6 +29,7 @@ steps:
- label: "cargo test not integration-tests*"
command: |
source ~/.cargo/env && set -eux
cargo install cargo-nextest
cargo nextest run --locked --workspace -p '*' --exclude 'integration-tests*'
timeout: 60
Expand All @@ -38,6 +40,7 @@ steps:
- label: "cargo test nightly integration-tests*"
command: |
source ~/.cargo/env && set -eux
cargo install cargo-nextest
cargo nextest run --features nightly,test_features -p 'integration-tests'
timeout: 60
Expand All @@ -48,6 +51,7 @@ steps:
- label: "cargo test nightly not integration-tests*"
command: |
source ~/.cargo/env && set -eux
cargo install cargo-nextest
cargo nextest run --workspace --features nightly,test_features,mock_node -p '*' --exclude 'integration-tests*'
timeout: 60
Expand Down

0 comments on commit 17deacd

Please sign in to comment.