2021-03-30 13:39:10 +01:00
|
|
|
[alias]
|
2021-11-01 23:36:51 +00:00
|
|
|
lint = "clippy --workspace --tests --examples --bins -- -Dclippy::todo"
|
|
|
|
lint-all = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy::todo"
|
2021-10-11 09:58:11 +08:00
|
|
|
|
2021-09-01 21:30:26 +01:00
|
|
|
ci-doctest = "test --workspace --all-features --doc --no-fail-fast -- --nocapture"
|
2021-10-11 09:58:11 +08:00
|
|
|
|
|
|
|
# just check the library (without dev deps)
|
|
|
|
ci-check-min = "hack --workspace check --no-default-features"
|
2021-10-19 14:53:42 +01:00
|
|
|
ci-check-lib = "hack --workspace --feature-powerset --exclude-features=io-uring check"
|
2021-10-11 09:58:11 +08:00
|
|
|
ci-check-lib-linux = "hack --workspace --feature-powerset check"
|
|
|
|
|
|
|
|
# check everything
|
2021-10-19 14:53:42 +01:00
|
|
|
ci-check = "hack --workspace --feature-powerset --exclude-features=io-uring check --tests --examples"
|
2021-10-11 09:58:11 +08:00
|
|
|
ci-check-linux = "hack --workspace --feature-powerset check --tests --examples"
|
|
|
|
|
|
|
|
# tests avoiding io-uring feature
|
2022-07-23 01:51:12 +02:00
|
|
|
ci-test = "hack --feature-powerset --exclude-features=io-uring test --lib --tests --no-fail-fast -- --nocapture"
|
2023-08-26 14:59:51 +01:00
|
|
|
ci-test-rustls-020 = "hack --feature-powerset --exclude-features=io-uring,rustls-0_21 test --lib --tests --no-fail-fast -- --nocapture"
|
|
|
|
ci-test-rustls-021 = "hack --feature-powerset --exclude-features=io-uring,rustls-0_20 test --lib --tests --no-fail-fast -- --nocapture"
|
2021-10-11 09:58:11 +08:00
|
|
|
|
2022-06-12 10:17:38 +09:00
|
|
|
# tests avoiding io-uring feature on Windows
|
2023-08-26 14:59:51 +01:00
|
|
|
ci-test-win = "hack --feature-powerset --depth=2 --exclude-features=io-uring test --lib --tests --no-fail-fast -- --nocapture"
|
2022-06-12 10:17:38 +09:00
|
|
|
|
2021-10-11 09:58:11 +08:00
|
|
|
# test with io-uring feature
|
2023-08-26 14:59:51 +01:00
|
|
|
ci-test-linux = "hack --feature-powerset --exclude-features=rustls-0_20 test --lib --tests --no-fail-fast -- --nocapture"
|