We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f2cac6 commit a7c2163Copy full SHA for a7c2163
justfile
@@ -6,7 +6,7 @@ default:
6
just --list
7
8
# run tests
9
-test:
+test: build-test-bins
10
uv run pytest
11
12
# does a version bump commit
@@ -55,9 +55,5 @@ build-test-dll:
55
build-test-exe:
56
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 }
57
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
+# build test binaries
+build-test-bins: build-test-dll build-test-exe
0 commit comments