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
|
|
|
|
2021-09-01 22:30:26 +02:00
|
|
|
ci-doctest = "test --workspace --all-features --doc --no-fail-fast -- --nocapture"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
|
|
|
# just check the library (without dev deps)
|
|
|
|
ci-check-min = "hack --workspace check --no-default-features"
|
2021-10-19 15:53:42 +02:00
|
|
|
ci-check-lib = "hack --workspace --feature-powerset --exclude-features=io-uring check"
|
2021-10-11 03:58:11 +02:00
|
|
|
ci-check-lib-linux = "hack --workspace --feature-powerset check"
|
|
|
|
|
|
|
|
# check everything
|
2021-10-19 15:53:42 +02:00
|
|
|
ci-check = "hack --workspace --feature-powerset --exclude-features=io-uring check --tests --examples"
|
2021-10-11 03:58:11 +02:00
|
|
|
ci-check-linux = "hack --workspace --feature-powerset check --tests --examples"
|
|
|
|
|
|
|
|
# tests avoiding io-uring feature
|
2021-11-16 01:22:24 +01:00
|
|
|
ci-test = " hack --feature-powerset --exclude=actix-rt --exclude=actix-server --exclude-features=io-uring test --workspace --lib --tests --no-fail-fast -- --nocapture"
|
2021-10-19 15:53:42 +02:00
|
|
|
ci-test-rt = " hack --feature-powerset --exclude-features=io-uring test --package=actix-rt --lib --tests --no-fail-fast -- --nocapture"
|
|
|
|
ci-test-server = "hack --feature-powerset --exclude-features=io-uring test --package=actix-server --lib --tests --no-fail-fast -- --nocapture"
|
2021-10-11 03:58:11 +02:00
|
|
|
|
2022-06-12 03:17:38 +02:00
|
|
|
# tests avoiding io-uring feature on Windows
|
|
|
|
ci-test-win = " hack --feature-powerset --depth 2 --exclude=actix-rt --exclude=actix-server --exclude-features=io-uring test --workspace --lib --tests --no-fail-fast -- --nocapture"
|
|
|
|
ci-test-rt-win = " hack --feature-powerset --depth 2 --exclude-features=io-uring test --package=actix-rt --lib --tests --no-fail-fast -- --nocapture"
|
|
|
|
ci-test-server-win = "hack --feature-powerset --depth 2 --exclude-features=io-uring test --package=actix-server --lib --tests --no-fail-fast -- --nocapture"
|
|
|
|
|
2021-10-11 03:58:11 +02:00
|
|
|
# test with io-uring feature
|
|
|
|
ci-test-rt-linux = " hack --feature-powerset test --package=actix-rt --lib --tests --no-fail-fast -- --nocapture"
|
|
|
|
ci-test-server-linux = "hack --feature-powerset test --package=actix-server --lib --tests --no-fail-fast -- --nocapture"
|
2021-10-19 15:53:42 +02:00
|
|
|
|
|
|
|
# test lower msrv
|
2021-10-19 17:13:13 +02:00
|
|
|
ci-test-lower-msrv = "hack --workspace --exclude=actix-server --exclude=actix-tls --feature-powerset test --lib --tests --no-fail-fast -- --nocapture"
|