@@ -20,8 +20,8 @@ def resync_specs(directory: pathlib.Path, errored: dict[str, str]) -> None:
2020 if spec .name in ["asynchronous" ]:
2121 continue
2222 try :
23- subprocess .run (
24- ["bash" , "./.evergreen/resync-specs.sh" , spec .name ], # noqa: S603, S607
23+ subprocess .run ( # noqa: S603
24+ ["bash" , "./.evergreen/resync-specs.sh" , spec .name ], # noqa: S607
2525 capture_output = True ,
2626 text = True ,
2727 check = True ,
@@ -34,7 +34,7 @@ def resync_specs(directory: pathlib.Path, errored: dict[str, str]) -> None:
3434def apply_patches (errored ):
3535 print ("Beginning to apply patches" )
3636 subprocess .run (
37- ["bash" , "./.evergreen/remove-unimplemented-tests.sh" ], # noqa: S603, S607
37+ ["bash" , "./.evergreen/remove-unimplemented-tests.sh" ], # noqa: S607
3838 check = True ,
3939 )
4040 try :
@@ -46,8 +46,8 @@ def apply_patches(errored):
4646 if patches :
4747 for patch in patches :
4848 print (f"Applying patch { patch } " )
49- subprocess .run (
50- [ # noqa: S603, S607
49+ subprocess .run ( # noqa: S603
50+ [ # noqa: S607
5151 "git" ,
5252 "apply" ,
5353 "-R" ,
@@ -96,7 +96,7 @@ def write_summary(errored: dict[str, str], new: list[str], filename: str | None)
9696 pr_body = ""
9797 # Avoid shell=True and complex pipes by using Python to process git output
9898 process = subprocess .run (
99- ["git" , "diff" , "--name-only" ], # noqa: S603, S607
99+ ["git" , "diff" , "--name-only" ], # noqa: S607
100100 capture_output = True ,
101101 text = True ,
102102 check = True ,
0 commit comments