We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@
1 parent e154e19 commit af9b2efCopy full SHA for af9b2ef
justfile
@@ -14,22 +14,22 @@ sleep:
14
deactivate
15
16
# Compile and install the Rust library.
17
-rust: wakeup
+rust:
18
export PYTHON_SYS_EXECUTABLE=$(which python3)
19
cargo check
20
pyo3-pack develop --binding_crate pyo3 --release --strip
21
22
# Run Python.
23
-python-run file='': wakeup
24
- python {{file}}
+python-run file='':
+ @python {{file}}
25
26
# Run the tests.
27
-test: wakeup
+test:
28
@py.test tests
29
30
# Inspect the `python-ext-wasm` extension.
31
-inspect: wakeup
32
- python -c "help('wasmer')"
+inspect:
+ @python -c "help('wasmer')"
33
34
# Local Variables:
35
# mode: makefile
0 commit comments