11
11
12
12
def resync_specs (directory : pathlib .Path , errored : dict [str , str ]) -> None :
13
13
"""Actually sync the specs"""
14
- print ("Beginning to sync specs" ) # noqa: T201
14
+ print ("Beginning to sync specs" )
15
15
for spec in os .scandir (directory ):
16
16
if not spec .is_dir ():
17
17
continue
@@ -27,11 +27,11 @@ def resync_specs(directory: pathlib.Path, errored: dict[str, str]) -> None:
27
27
)
28
28
except CalledProcessError as exc :
29
29
errored [spec .name ] = exc .stderr
30
- print ("Done syncing specs" ) # noqa: T201
30
+ print ("Done syncing specs" )
31
31
32
32
33
33
def apply_patches ():
34
- print ("Beginning to apply patches" ) # noqa: T201
34
+ print ("Beginning to apply patches" )
35
35
subprocess .run (["bash" , "./.evergreen/remove-unimplemented-tests.sh" ], check = True ) # noqa: S603, S607
36
36
subprocess .run (
37
37
["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]:
56
56
"client_side_operations_timeout" : "csot" ,
57
57
"mongodb_handshake" : "handshake" ,
58
58
"load_balancers" : "load_balancer" ,
59
- "atlas_data_lake_testing" : "atlas" ,
60
59
"connection_monitoring_and_pooling" : "connection_monitoring" ,
61
60
"command_logging_and_monitoring" : "command_logging" ,
62
61
"initial_dns_seedlist_discovery" : "srv_seedlist" ,
@@ -96,7 +95,7 @@ def write_summary(errored: dict[str, str], new: list[str], filename: Optional[st
96
95
pr_body += "\n "
97
96
if pr_body != "" :
98
97
if filename is None :
99
- print (f"\n { pr_body } " ) # noqa: T201
98
+ print (f"\n { pr_body } " )
100
99
else :
101
100
with open (filename , "w" ) as f :
102
101
# replacements made for proper json
0 commit comments