-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathMakefile
More file actions
51 lines (36 loc) · 1.34 KB
/
Makefile
File metadata and controls
51 lines (36 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
.PHONY: all test nits docs graphs rm-graphs doctest coverage insta-test
RUST_SRC=$(shell find . -type f -wholename '*/src/*.rs' -or -name 'Cargo.toml')
TESTS=$(shell find tests/ -type f -name '*.egg' -not -name '*repro-*')
WWW=${PWD}/target/www
all: test nits docs
test: doctest
cargo insta test --test-runner nextest --release --workspace --unreferenced reject
coverage:
cargo llvm-cov nextest --release --workspace --lcov --output-path lcov.info
# Note: doctests are not included in coverage reports
doctest:
cargo test --doc --release --workspace
nits:
@rustup component add clippy
cargo clippy --tests -- -D warnings
@rustup component add rustfmt
cargo fmt --check
cargo doc --workspace
fixnits:
@rustup component add rustfmt
cargo fmt
cargo clippy --fix --workspace --allow-dirty
docs:
mkdir -p ${WWW}/
cargo doc --no-deps --all-features --workspace
touch target/doc/.nojekyll # prevent github from trying to run jekyll
cp www/index.html ${WWW}/index.html
cp -r target/doc ${WWW}/docs
graphs: $(patsubst %.egg,%.svg,$(filter-out $(wildcard tests/repro-*.egg),$(wildcard tests/*.egg)))
json: $(patsubst %.egg,%.json,$(filter-out $(wildcard tests/repro-*.egg),$(wildcard tests/*.egg)))
%.svg: %.egg
cargo run --release -- --to-dot --to-svg $^
%.json: %.egg
cargo run --release -- --to-json $^
rm-graphs:
rm -f tests/*.dot tests/*.svg