File: justfile

package info (click to toggle)
rust-convert-case 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 196 kB
  • sloc: makefile: 2
file content (32 lines) | stat: -rw-r--r-- 543 bytes parent folder | download
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
test:
    cargo test --all

watch-test:
    watchexec -- "reset && just test"

build:
    cargo build --all

watch-build:
    watchexec -- "reset && just build"

coverage:
    cargo tarpaulin --all-features --out Xml && pycobertura show cobertura.xml

doc:
    cargo doc --all-features

watch-doc:
    watchexec -- "just doc && cargo test --all-features --doc"

tree:
    tree -I target

test-ccase: build-ccase
    cargo test -p ccase --no-fail-fast

build-ccase:
    cargo build -p ccase

run *OPTIONS:
    cargo run -p ccase -- {{OPTIONS}}