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 16:23:27 +02:00 committed by GitHub
parent 98aefcca83
commit 23bbfc4b94
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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()],