1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 23:51:06 +01:00
actix-extras/Makefile

23 lines
407 B
Makefile
Raw Normal View History

2017-09-30 18:10:03 +02:00
.PHONY: default build test doc clean
CARGO_FLAGS := --features "$(FEATURES)"
default: test
build:
cargo build $(CARGO_FLAGS)
test: build clippy
cargo test $(CARGO_FLAGS)
2017-10-26 15:12:23 +02:00
skeptic:
USE_SKEPTIC=1 cargo test $(CARGO_FLAGS)
2017-09-30 18:10:03 +02:00
# cd examples/word-count && python setup.py install && pytest -v tests
clippy:
if $$CLIPPY; then cargo clippy $(CARGO_FLAGS); fi
doc: build
cargo doc --no-deps $(CARGO_FLAGS)