1111
1212def resync_specs (directory : pathlib .Path , errored : dict [str , str ]) -> None :
1313 """Actually sync the specs"""
14- print ("Beginning to sync specs" ) # noqa: T201
14+ print ("Beginning to sync specs" )
1515 for spec in os .scandir (directory ):
1616 if not spec .is_dir ():
1717 continue
@@ -27,11 +27,11 @@ def resync_specs(directory: pathlib.Path, errored: dict[str, str]) -> None:
2727 )
2828 except CalledProcessError as exc :
2929 errored [spec .name ] = exc .stderr
30- print ("Done syncing specs" ) # noqa: T201
30+ print ("Done syncing specs" )
3131
3232
3333def apply_patches ():
34- print ("Beginning to apply patches" ) # noqa: T201
34+ print ("Beginning to apply patches" )
3535 subprocess .run (["bash" , "./.evergreen/remove-unimplemented-tests.sh" ], check = True ) # noqa: S603, S607
3636 subprocess .run (
3737 ["git apply -R --allow-empty --whitespace=fix ./.evergreen/spec-patch/*" ], # noqa: S607
@@ -56,7 +56,6 @@ def check_new_spec_directories(directory: pathlib.Path) -> list[str]:
5656 "client_side_operations_timeout" : "csot" ,
5757 "mongodb_handshake" : "handshake" ,
5858 "load_balancers" : "load_balancer" ,
59- "atlas_data_lake_testing" : "atlas" ,
6059 "connection_monitoring_and_pooling" : "connection_monitoring" ,
6160 "command_logging_and_monitoring" : "command_logging" ,
6261 "initial_dns_seedlist_discovery" : "srv_seedlist" ,
@@ -96,7 +95,7 @@ def write_summary(errored: dict[str, str], new: list[str], filename: Optional[st
9695 pr_body += "\n "
9796 if pr_body != "" :
9897 if filename is None :
99- print (f"\n { pr_body } " ) # noqa: T201
98+ print (f"\n { pr_body } " )
10099 else :
101100 with open (filename , "w" ) as f :
102101 # replacements made for proper json
0 commit comments