Run ignored test when running single test (#30830)

Release Notes:

- languages: Run ignored test if user wants to run one specific test
This commit is contained in:
Jakob Herpel
2025-05-16 14:23:27 +00:00
committed by GitHub
parent 98aefcca83
commit 23bbfc4b94
+2
View File
@@ -686,6 +686,7 @@ impl ContextProvider for RustContextProvider {
RUST_PACKAGE_TASK_VARIABLE.template_value(),
"--".into(),
"--nocapture".into(),
"--include-ignored".into(),
RUST_TEST_NAME_TASK_VARIABLE.template_value(),
],
tags: vec!["rust-test".to_owned()],
@@ -706,6 +707,7 @@ impl ContextProvider for RustContextProvider {
RUST_PACKAGE_TASK_VARIABLE.template_value(),
"--".into(),
"--nocapture".into(),
"--include-ignored".into(),
RUST_DOC_TEST_NAME_TASK_VARIABLE.template_value(),
],
tags: vec!["rust-doc-test".to_owned()],