2021-03-30 14:39:10 +02:00
|
|
|
[alias]
|
2021-11-02 00:36:51 +01:00
|
|
|
lint = "clippy --workspace --tests --examples --bins -- -Dclippy::todo"
|
|
|
|
lint-all = "clippy --workspace --all-features --tests --examples --bins -- -Dclippy::todo"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
|
|
|
# just check the library (without dev deps)
|
|
|
|
ci-check-min = "hack --workspace check --no-default-features"
|
2023-12-06 05:04:39 +01:00
|
|
|
ci-check-lib = "hack --workspace --feature-powerset --depth=2 --exclude-features=io-uring check"
|
|
|
|
ci-check-lib-linux = "hack --workspace --feature-powerset --depth=2 check"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
|
|
|
# check everything
|
2023-12-06 05:04:39 +01:00
|
|
|
ci-check = "hack --workspace --feature-powerset --depth=2 --exclude-features=io-uring check --tests --examples"
|
|
|
|
ci-check-linux = "hack --workspace --feature-powerset --depth=2 check --tests --examples"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
|
|
|
# tests avoiding io-uring feature
|
2023-12-06 05:04:39 +01:00
|
|
|
ci-test = "hack --feature-powerset --depth=2 --exclude-features=io-uring test --lib --tests --no-fail-fast -- --nocapture"
|
2024-02-03 18:01:47 +01:00
|
|
|
ci-test-rustls-020 = "hack --feature-powerset --depth=2 --exclude-features=io-uring,rustls-0_21,rustls-0_22 test --lib --tests --no-fail-fast -- --nocapture"
|
|
|
|
ci-test-rustls-021 = "hack --feature-powerset --depth=2 --exclude-features=io-uring,rustls-0_20,rustls-0_22 test --lib --tests --no-fail-fast -- --nocapture"
|
|
|
|
ci-test-rustls-022 = "hack --feature-powerset --depth=2 --exclude-features=io-uring,rustls-0_20,rustls-0_21 test --lib --tests --no-fail-fast -- --nocapture"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
|
|
|
# test with io-uring feature
|
2024-05-11 16:10:56 +02:00
|
|
|
ci-test-linux = "hack --feature-powerset --depth=2 --exclude-features=rustls-0_20,rustls-0_21 test --lib --tests --no-fail-fast -- --nocapture"
|