diff options
| -rw-r--r-- | src/tests/window_opening.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/tests/window_opening.rs b/src/tests/window_opening.rs index 820c4dcd..b824cc69 100644 --- a/src/tests/window_opening.rs +++ b/src/tests/window_opening.rs @@ -405,6 +405,11 @@ post-map configures: #[test] fn target_size() { + if std::env::var_os("RUN_SLOW_TESTS").is_none() { + eprintln!("ignoring slow test"); + return; + } + // Here we test a massive powerset of settings that can affect the window size: // // * want fullscreen |
