We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb40484 commit 21c0ba2Copy full SHA for 21c0ba2
noxfile.py
@@ -109,7 +109,7 @@ def linters(session):
109
@nox.session(python=travis_python)
110
def travis_test(session):
111
installed_base_deps = False
112
- for name, f in globals().items():
+ for name, f in sorted(globals().items()):
113
python = "pypy" if travis_python == "pypy" else "py{}".format(travis_python)
114
if name.startswith("test-{python}".format(python=python)):
115
f(session, fast=installed_base_deps)
0 commit comments