summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index cb472d80..cc967702 100644
--- a/Makefile
+++ b/Makefile
@@ -9,4 +9,9 @@ clean:
test:
cargo test
+pyo3-test:
+ cargo build --profile=release-with-debug --package candle-pyo3
+ ln -f -s ./target/release-with-debug/libcandle.so candle.so
+ PYTHONPATH=. python3 candle-pyo3/test.py
+
all: test