Skip to content

Commit 122119b

Browse files
authored
Exclude sheepdog in nextest runs (#1631)
### What does this PR do? In PR #1590 I attempted to move sheepdog to CI-only integration tests. However I failed to realize that sheepdog tests would still run as a part of nextest runs because of the way workspaces are arranged in this project. This commit should make local `ci/validate` loops much faster.
1 parent 6c389c9 commit 122119b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@ if ! command -v cargo-nextest &> /dev/null; then
1010
fi
1111

1212
echo "Running cargo nextest..."
13-
cargo nextest run --all-features "$@"
13+
cargo nextest run --workspace --all-features --exclude sheepdog "$@"
1414

1515
echo "Tests passed!"

0 commit comments

Comments
 (0)