Merge pull request #2602 from szabgab/gui-tests

Select all the GUI tests if no filter was provided
This commit is contained in:
Eric Huss 2025-03-21 00:25:11 +00:00 committed by GitHub
commit e73d3b7cfa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -75,7 +75,7 @@ fn main() {
let mut no_headless = false;
let mut filters = Vec::new();
for arg in std::env::args() {
for arg in std::env::args().skip(1) {
if arg == "--disable-headless-test" {
no_headless = true;
} else {