Skip to content

Commit a7c2163

Browse files
committed
fix test just recipe
1 parent 7f2cac6 commit a7c2163

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

justfile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ default:
66
just --list
77

88
# run tests
9-
test:
9+
test: build-test-bins
1010
uv run pytest
1111

1212
# does a version bump commit
@@ -55,9 +55,5 @@ build-test-dll:
5555
build-test-exe:
5656
if (!(Test-Path "tests/manual/test_inject/target/release/inject_target.dll")) { cargo build --release --manifest-path tests/manual/test_inject/Cargo.toml --bin inject_target }
5757

58-
# run manual tests
59-
manual-test: build-test-dll build-test-exe
60-
uv run pytest -rs --run-manual tests/manual/
61-
62-
# run all tests
63-
all-tests: test manual-test
58+
# build test binaries
59+
build-test-bins: build-test-dll build-test-exe

0 commit comments

Comments
 (0)