pyo3/Makefile
2018-10-09 18:49:54 +02:00

23 lines
377 B
Makefile

.PHONY: default test
ifndef PY
PY := $(word 2, $(subst ., ,$(shell python --version 2>&1)))
endif
ifeq ($(PY),2)
FEATURES := python2
endif
ifeq ($(PY),3)
FEATURES := python3
endif
CARGO_FLAGS := --features "$(FEATURES)" --no-default-features
default: test
test:
cargo test $(CARGO_FLAGS)
pip install tox
cd examples/word-count && tox
cd examples/rustapi_module && tox