Skip to content

Commit 466208d

Browse files
committed
chore: fix Justfile after moving tests out of the workspace
1 parent 843471b commit 466208d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Justfile

+11-11
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ test-classifier:
101101

102102
# Run the main engine end-to-end tests on default features.
103103
test-engine: (gen-tests)
104-
cargo test -p rsonpath-test --tests -q
104+
cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml --tests -q
105105

106106
# Run the input tests on default features.
107107
test-input:
@@ -119,16 +119,16 @@ test-full: (gen-tests)
119119

120120
# Run E2E engine tests on all combinations of SIMD features for x86 platforms.
121121
test-x86-simd:
122-
RSONPATH_UNSAFE_FORCE_SIMD="avx2;fast_quotes;fast_popcnt" cargo test -p rsonpath-test --tests -q
123-
RSONPATH_UNSAFE_FORCE_SIMD="ssse3;fast_quotes;fast_popcnt" cargo test -p rsonpath-test --tests -q
124-
RSONPATH_UNSAFE_FORCE_SIMD="ssse3;fast_quotes;slow_popcnt" cargo test -p rsonpath-test --tests -q
125-
RSONPATH_UNSAFE_FORCE_SIMD="ssse3;slow_quotes;fast_popcnt" cargo test -p rsonpath-test --tests -q
126-
RSONPATH_UNSAFE_FORCE_SIMD="ssse3;slow_quotes;slow_popcnt" cargo test -p rsonpath-test --tests -q
127-
RSONPATH_UNSAFE_FORCE_SIMD="sse2;fast_quotes;fast_popcnt" cargo test -p rsonpath-test --tests -q
128-
RSONPATH_UNSAFE_FORCE_SIMD="sse2;fast_quotes;slow_popcnt" cargo test -p rsonpath-test --tests -q
129-
RSONPATH_UNSAFE_FORCE_SIMD="sse2;slow_quotes;fast_popcnt" cargo test -p rsonpath-test --tests -q
130-
RSONPATH_UNSAFE_FORCE_SIMD="sse2;slow_quotes;slow_popcnt" cargo test -p rsonpath-test --tests -q
131-
RSONPATH_UNSAFE_FORCE_SIMD="nosimd;slow_quotes;slow_popcnt" cargo test -p rsonpath-test --tests -q
122+
RSONPATH_UNSAFE_FORCE_SIMD="avx2;fast_quotes;fast_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml --tests -q
123+
RSONPATH_UNSAFE_FORCE_SIMD="ssse3;fast_quotes;fast_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
124+
RSONPATH_UNSAFE_FORCE_SIMD="ssse3;fast_quotes;slow_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
125+
RSONPATH_UNSAFE_FORCE_SIMD="ssse3;slow_quotes;fast_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
126+
RSONPATH_UNSAFE_FORCE_SIMD="ssse3;slow_quotes;slow_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
127+
RSONPATH_UNSAFE_FORCE_SIMD="sse2;fast_quotes;fast_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
128+
RSONPATH_UNSAFE_FORCE_SIMD="sse2;fast_quotes;slow_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
129+
RSONPATH_UNSAFE_FORCE_SIMD="sse2;slow_quotes;fast_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
130+
RSONPATH_UNSAFE_FORCE_SIMD="sse2;slow_quotes;slow_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
131+
RSONPATH_UNSAFE_FORCE_SIMD="nosimd;slow_quotes;slow_popcnt" cargo test --manifest-path ./crates/rsonpath-test/Cargo.toml -q
132132

133133
# Run doctests on the library.
134134
test-doc:

0 commit comments

Comments
 (0)