Skip to content

Commit 6108a90

Browse files
committed
chore: filter out new integrationtest from default CI workflow
1 parent 7b46c77 commit 6108a90

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
- name: Compile unit tests with all features enabled
7272
run: cargo nextest run --cargo-profile ci-dev --all-targets --all-features --workspace --locked --no-run --timings
7373
- name: Run unit tests with all features enabled excluding consensus integration tests
74-
run: timeout 10m cargo nextest run --cargo-profile ci-dev --no-fail-fast --all-targets --all-features --workspace --locked -E 'not test(/^test::consensus_3_nodes/)' --retries 2
74+
run: timeout 10m cargo nextest run --cargo-profile ci-dev --no-fail-fast --all-targets --all-features --workspace --locked -E 'not test(/^test::consensus_[34]_nodes/)' --retries 2
7575
- name: Store timings with all features enabled
7676
uses: actions/upload-artifact@v4
7777
with:

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@ default:
33

44
test $RUST_BACKTRACE="1" *args="": build-pathfinder-release
55
cargo nextest run --no-fail-fast --all-targets --features p2p --workspace --locked \
6-
-E 'not (test(/^p2p_network::sync::sync_handlers::tests::prop/) | test(/^consensus::inner::p2p_task::handler_proptest/) | test(/^test::consensus_3_nodes/))' \
6+
-E 'not (test(/^p2p_network::sync::sync_handlers::tests::prop/) | test(/^consensus::inner::p2p_task::handler_proptest/) | test(/^test::consensus_[34]_nodes/))' \
77
{{args}}
88

99
test-all-features $RUST_BACKTRACE="1" *args="": build-pathfinder-release
1010
cargo nextest run --no-fail-fast --all-targets --all-features --workspace --locked \
11-
-E 'not (test(/^p2p_network::sync::sync_handlers::tests::prop/) | test(/^consensus::inner::p2p_task::handler_proptest/) | test(/^test::consensus_3_nodes/))' \
11+
-E 'not (test(/^p2p_network::sync::sync_handlers::tests::prop/) | test(/^consensus::inner::p2p_task::handler_proptest/) | test(/^test::consensus_[34]_nodes/))' \
1212
{{args}}
1313

1414
test-consensus $RUST_BACKTRACE="1" *args="": build-pathfinder build-feeder-gateway

0 commit comments

Comments
 (0)