diff --git a/Makefile.toml b/Makefile.toml index b54d4491..09b7b381 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -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, )"] \ No newline at end of file