pyo3/Makefile

14 lines
275 B
Makefile
Raw Normal View History

2018-11-15 20:28:28 +00:00
.PHONY: test publish
2015-04-19 05:50:50 +00:00
2018-05-30 13:03:31 +00:00
test:
2018-11-15 20:28:28 +00:00
cargo test
cargo clippy
tox
2018-11-15 20:28:28 +00:00
for example in examples/*; do tox -e py --workdir $$example; done
2018-11-02 21:32:18 +00:00
publish:
2018-11-15 20:28:28 +00:00
cargo test
2018-11-02 21:32:18 +00:00
cargo publish --manifest-path pyo3-derive-backend/Cargo.toml
cargo publish --manifest-path pyo3cls/Cargo.toml
cargo publish