From 4f9a7434e58e9346c1db64028386451cda5869a0 Mon Sep 17 00:00:00 2001 From: Martin Bielik Date: Sat, 21 Dec 2024 00:52:33 +0100 Subject: fix test: sorting glob output --- py/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'py/utils.py') diff --git a/py/utils.py b/py/utils.py index b2960f2..d118326 100644 --- a/py/utils.py +++ b/py/utils.py @@ -131,7 +131,7 @@ def parse_include_paths(path): expanded_paths = [path] if '*' in path: - expanded_paths = glob.glob(path, recursive=True) + expanded_paths = sorted(glob.glob(path, recursive=True)) return [path for path in expanded_paths if not os.path.isdir(path)] -- cgit v1.2.3