Skip to content

Commit 603bd00

Browse files
committed
Run the yaml files in sorted order
1 parent ad69fe6 commit 603bd00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

t/run_yaml_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def test_all_yaml_files():
2020
"""
2121
Walk all the YAML files and run their tests.
2222
"""
23-
filenames = glob.glob('t/*.yaml')
23+
filenames = sorted(glob.glob('t/*.yaml'))
2424
for filename in filenames:
2525
logger.info('YAML: %s' % filename)
2626
with open(filename, 'r', encoding='UTF-8') as f:

0 commit comments

Comments
 (0)