File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -174,7 +174,7 @@ def lint_encoding_test(path: str) -> None:
174
174
175
175
def lint_encoding_tests (path : str ) -> None :
176
176
for root , dirs , files in os .walk (path ):
177
- for file in files :
177
+ for file in sorted ( files ) :
178
178
if not file .endswith (".dat" ):
179
179
continue
180
180
lint_encoding_test (clean_path (join (root , file )))
@@ -219,7 +219,7 @@ def lint_tokenizer_test(path: str) -> None:
219
219
220
220
def lint_tokenizer_tests (path : str ) -> None :
221
221
for root , dirs , files in os .walk (path ):
222
- for file in files :
222
+ for file in sorted ( files ) :
223
223
if not file .endswith (".test" ):
224
224
continue
225
225
lint_tokenizer_test (clean_path (join (root , file )))
@@ -254,7 +254,7 @@ def lint_tree_construction_test(path: str) -> None:
254
254
255
255
def lint_tree_construction_tests (path : str ) -> None :
256
256
for root , dirs , files in os .walk (path ):
257
- for file in files :
257
+ for file in sorted ( files ) :
258
258
if not file .endswith (".dat" ):
259
259
continue
260
260
lint_tree_construction_test (clean_path (join (root , file )))
You can’t perform that action at this time.
0 commit comments