@@ -530,11 +530,11 @@ def process_self_contained_coordinator_stream(
530
530
fn , github_token , pull_request , "redis" , "redis" , verbose
531
531
)
532
532
533
- test_regexp = ".*"
534
- if b"test_regexp " in testDetails :
535
- test_regexp = testDetails [b"test_regexp " ]
533
+ tests_regexp = ".*"
534
+ if b"tests_regexp " in testDetails :
535
+ tests_regexp = testDetails [b"tests_regexp " ]
536
536
logging .info (
537
- f"detected a regexp definition on the streamdata { test_regexp } "
537
+ f"detected a regexp definition on the streamdata { tests_regexp } "
538
538
)
539
539
540
540
command_groups_regexp = None
@@ -596,7 +596,7 @@ def process_self_contained_coordinator_stream(
596
596
defaults_filename ,
597
597
priority_lower_limit ,
598
598
priority_upper_limit ,
599
- test_regexp ,
599
+ tests_regexp ,
600
600
testsuite_spec_files ,
601
601
command_groups_regexp ,
602
602
)
@@ -1368,7 +1368,7 @@ def filter_test_files(
1368
1368
defaults_filename ,
1369
1369
priority_lower_limit ,
1370
1370
priority_upper_limit ,
1371
- test_regexp ,
1371
+ tests_regexp ,
1372
1372
testsuite_spec_files ,
1373
1373
command_groups_regexp = None ,
1374
1374
):
@@ -1377,17 +1377,17 @@ def filter_test_files(
1377
1377
if defaults_filename in test_file :
1378
1378
continue
1379
1379
1380
- if test_regexp != ".*" :
1380
+ if tests_regexp != ".*" :
1381
1381
logging .info (
1382
- "Filtering all tests via a regular expression: {}" .format (test_regexp )
1382
+ "Filtering all tests via a regular expression: {}" .format (tests_regexp )
1383
1383
)
1384
- tags_regex_string = re .compile (test_regexp )
1384
+ tags_regex_string = re .compile (tests_regexp )
1385
1385
1386
1386
match_obj = re .search (tags_regex_string , test_file )
1387
1387
if match_obj is None :
1388
1388
logging .info (
1389
1389
"Skipping {} given it does not match regex {}" .format (
1390
- test_file , test_regexp
1390
+ test_file , tests_regexp
1391
1391
)
1392
1392
)
1393
1393
continue
0 commit comments