@@ -2,7 +2,7 @@ use crate::{
2
2
logging:: { Logger , Panic , TestOutput , TestResult } ,
3
3
mullvad_daemon:: { self , MullvadClientArgument , RpcClientProvider } ,
4
4
summary:: SummaryLogger ,
5
- tests:: { self , config:: TEST_CONFIG , get_tests , TestContext } ,
5
+ tests:: { self , config:: TEST_CONFIG , TestContext , TestMetadata } ,
6
6
vm,
7
7
} ;
8
8
use anyhow:: { Context , Result } ;
@@ -103,7 +103,7 @@ impl TestHandler<'_> {
103
103
pub async fn run (
104
104
config : tests:: config:: TestConfig ,
105
105
instance : & dyn vm:: VmInstance ,
106
- test_filters : & [ String ] ,
106
+ tests : Vec < & TestMetadata > ,
107
107
skip_wait : bool ,
108
108
print_failed_tests_only : bool ,
109
109
summary_logger : Option < SummaryLogger > ,
@@ -141,22 +141,6 @@ pub async fn run(
141
141
logger : Logger :: get_or_init ( ) ,
142
142
} ;
143
143
144
- let mut tests = get_tests ( ) ;
145
-
146
- tests. retain ( |test| test. should_run_on_os ( TEST_CONFIG . os ) ) ;
147
-
148
- if !test_filters. is_empty ( ) {
149
- tests. retain ( |test| {
150
- for command in test_filters {
151
- let command = command. to_lowercase ( ) ;
152
- if test. command . to_lowercase ( ) . contains ( & command) {
153
- return true ;
154
- }
155
- }
156
- false
157
- } ) ;
158
- }
159
-
160
144
if TEST_CONFIG . app_package_to_upgrade_from_filename . is_some ( ) {
161
145
test_handler
162
146
. run_test (
0 commit comments