We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eb3adc commit 2ebb521Copy full SHA for 2ebb521
src/common.rs
@@ -17,7 +17,7 @@ use std::path::PathBuf;
17
#[cfg(not(feature = "norustc"))]
18
use rustc;
19
20
-use test::ColorConfig;
+use test::{ColorConfig, RunIgnored};
21
use runtest::dylib_env_var;
22
23
#[derive(Clone, Copy, PartialEq, Debug)]
@@ -143,7 +143,7 @@ pub struct Config {
143
pub mode: Mode,
144
145
/// Run ignored tests
146
- pub run_ignored: bool,
+ pub run_ignored: RunIgnored,
147
148
/// Only run tests that match this filter
149
pub filter: Option<String>,
@@ -337,7 +337,7 @@ impl Default for Config {
337
build_base: env::temp_dir(),
338
stage_id: "stage-id".to_owned(),
339
mode: Mode::RunPass,
340
- run_ignored: false,
+ run_ignored: RunIgnored::No,
341
filter: None,
342
filter_exact: false,
343
logfile: None,
0 commit comments