-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathMakefile
33 lines (28 loc) · 1.07 KB
/
Makefile
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
setup-debian:
./scripts/dev/install_debian_requirements.sh
setup-macos:
./scripts/dev/install_macos_requirements.sh
test:
cd ./src-tauri && cargo test --no-fail-fast --workspace -- --nocapture
test-cover:
cd ./src-tauri && cargo tarpaulin --frozen --no-fail-fast --out Xml --workspace -- --nocapture
test-trace:
export RUST_BACKTRACE=1 && cd ./src-tauri && cargo test --no-fail-fast --workspace -- --nocapture
test-quiet:
cd ./src-tauri && cargo test -q --no-fail-fast --workspace -- --nocapture
test-watch:
cd ./src-tauri && cargo watch -x "test --workspace -- --nocapture"
test-cli:
cd ./src-tauri/cli && cargo test --no-fail-fast -- --nocapture
test-cli-watch:
cd ./src-tauri/cli && cargo watch -x "test -- --nocapture"
test-common:
cd ./src-tauri/common && cargo test --no-fail-fast -- --nocapture
test-common-watch:
cd ./src-tauri/common && cargo watch -x "test -- --nocapture"
test-filer:
cd ./src-tauri/filer && cargo test --no-fail-fast -- --nocapture
test-filer-watch:
cd ./src-tauri/filer && cargo watch -x "test -- --nocapture"
upgrade:
cd ./src-tauri && cargo upgrade