pyo3/test.sh

7 lines
162 B
Bash
Raw Normal View History

2015-01-05 16:05:53 +00:00
#!/bin/bash
set -xeu
cargo build
2015-01-12 02:00:34 +00:00
rustc testmodule.rs -L target -L target/deps -o testmodule.so
2015-01-05 16:05:53 +00:00
python -c "import testmodule; print(repr(testmodule.__author__))"