Add tests with async features enabled to CI

This commit is contained in:
Christian Legnitto 2020-01-20 23:04:00 -08:00
parent 7681f42933
commit ad3c7ef6d9

View file

@ -87,3 +87,12 @@ condition = { env_set = [ "RELEASE_LEVEL" ] }
description = "Run `cargo-release` for every crate, but only make changes locally"
command = "cargo-release"
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, )"]