File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/sio3pack/packages/sinolpack Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -505,11 +505,12 @@ def _process_existing_tests(self):
505
505
test_id = match .group (1 )
506
506
group = match .group (2 )
507
507
test_ids .add ((test_id , group , test_name ))
508
- elif not file .startswith ('.' ) and not self .configuration .allow_unrecognized_files :
508
+ elif not file .startswith ("." ) and not self .configuration .allow_unrecognized_files :
509
509
raise ProcessPackageError (
510
510
f"Unrecognized file in '{ ext } ' directory: { file } " ,
511
511
f"Unrecognized file in '{ ext } ' directory ({ file } ). All files in the { ext } directory "
512
- f"should match the pattern: " f"{ self ._get_test_regex ()} ." ,
512
+ f"should match the pattern: "
513
+ f"{ self ._get_test_regex ()} ." ,
513
514
)
514
515
# TODO: Sort this properly
515
516
test_ids = sorted (test_ids )
You can’t perform that action at this time.
0 commit comments