summaryrefslogtreecommitdiffstats
path: root/lib/Controller
diff options
context:
space:
mode:
authorNextcloud bot <bot@nextcloud.com>2018-03-05 01:28:44 +0000
committerNextcloud bot <bot@nextcloud.com>2018-03-05 01:28:44 +0000
commit2de169e43a17bdb6e1d19054e76de3ce7e220052 (patch)
treecedc3c4a857e7715d2a0f406d0e75b4cc49ee76a /lib/Controller
parent895e3019948912cf48ef95c2a3246ea894428365 (diff)
[tx-robot] updated from transifex
Diffstat (limited to 'lib/Controller')
0 files changed, 0 insertions, 0 deletions
t interactive-developer-environment-in-docker: ## Use docker for all dependencies - run make from there docker build -t $(docker_image) - < etc/developer.Dockerfile docker run -v $$PWD:/volume -w /volume -it $(docker_image) ##@ Development target/debug/dua: always cargo build target/release/dua: always cargo build --release lint: ## Run lints with clippy cargo clippy profile: target/release/dua ## run callgrind and annotate its output - linux only valgrind --callgrind-out-file=callgrind.profile --tool=callgrind $< >/dev/null callgrind_annotate --auto=yes callgrind.profile benchmark: target/release/dua ## see how fast things are, powered by hyperfine hyperfine '$<' tests: check unit-tests journey-tests ## run all tests check:## run all unit tests cargo check --all cargo check --all-features cargo check --no-default-features cargo check --features tui-unix cargo check --features tui-crossplatform unit-tests: ## run all unit tests cargo test --all continuous-unit-tests: ## run all unit tests whenever something changes watchexec -w src $(MAKE) unit-tests journey-tests: target/debug/dua ## run stateless journey tests ./tests/stateless-journey.sh $< continuous-journey-tests: ## run stateless journey tests whenever something changes watchexec $(MAKE) journey-tests