Skip to content

Commit 21c0ba2

Browse files
committed
stable execution order of tests to avoid dependency nightmare
1 parent bb40484 commit 21c0ba2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def linters(session):
109109
@nox.session(python=travis_python)
110110
def travis_test(session):
111111
installed_base_deps = False
112-
for name, f in globals().items():
112+
for name, f in sorted(globals().items()):
113113
python = "pypy" if travis_python == "pypy" else "py{}".format(travis_python)
114114
if name.startswith("test-{python}".format(python=python)):
115115
f(session, fast=installed_base_deps)

0 commit comments

Comments
 (0)