Skip to content

Commit 2216ad6

Browse files
committed
sort list of import tests
1 parent 712b4f9 commit 2216ad6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/import_tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def gen(packages: List[str], packages_dir = Path("packages")):
2121
imports.update(meta["test"]["imports"])
2222

2323
if len(imports) > 0:
24-
res[package] = list(imports)
24+
res[package] = sorted(list(imports))
2525
except FileNotFoundError:
2626
print(f"package {package}'s meta.yaml not found")
2727
return res

0 commit comments

Comments
 (0)