Skip to content

Commit

Permalink
Always execute tests in the same order
Browse files Browse the repository at this point in the history
  • Loading branch information
kedder committed Sep 18, 2015
1 parent be54bd0 commit 15c8111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/z3c/rml/tests/test_rml.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def test_suite():
inputDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'input')
outputDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'output')
expectDir = os.path.join(os.path.dirname(z3c.rml.tests.__file__), 'expected')
for filename in os.listdir(inputDir):
for filename in sorted(os.listdir(inputDir)):
if not filename.endswith(".rml"):
continue

Expand Down

0 comments on commit 15c8111

Please sign in to comment.