Add tests with async features enabled to CI
This commit is contained in:
parent
7681f42933
commit
ad3c7ef6d9
1 changed files with 9 additions and 0 deletions
|
@ -87,3 +87,12 @@ condition = { env_set = [ "RELEASE_LEVEL" ] }
|
||||||
description = "Run `cargo-release` for every crate, but only make changes locally"
|
description = "Run `cargo-release` for every crate, but only make changes locally"
|
||||||
command = "cargo-release"
|
command = "cargo-release"
|
||||||
args = ["release", "--config", "${CARGO_MAKE_WORKING_DIRECTORY}/../_build/release.toml", "--no-confirm", "--skip-publish", "--skip-push", "--skip-tag", "${RELEASE_LEVEL}"]
|
args = ["release", "--config", "${CARGO_MAKE_WORKING_DIRECTORY}/../_build/release.toml", "--no-confirm", "--skip-publish", "--skip-push", "--skip-tag", "${RELEASE_LEVEL}"]
|
||||||
|
|
||||||
|
[tasks.test-verbose]
|
||||||
|
dependencies = ["test-async-verbose"]
|
||||||
|
|
||||||
|
[tasks.test-async-verbose]
|
||||||
|
description = "Runs cargo test with async feature"
|
||||||
|
category = "Test"
|
||||||
|
command = "cargo"
|
||||||
|
args = ["test", "--verbose", "--features", "async", "@@split(CARGO_MAKE_CARGO_BUILD_TEST_FLAGS, )"]
|
Loading…
Reference in a new issue