Sort parametrize params to test_external_plugins_integrated

This might cause problems during collection with pytest-xdist; we
didn't see any so far mostly by luck I think.

Shame on me for letting that slip in.
This commit is contained in:
Bruno Oliveira 2019-07-05 19:04:55 -03:00
parent b1928f878d
commit f1b8431d99
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,7 @@ def test_terminal_reporter_writer_attr(pytestconfig):
assert terminal_reporter.writer is terminal_reporter._tw
@pytest.mark.parametrize("plugin", deprecated.DEPRECATED_EXTERNAL_PLUGINS)
@pytest.mark.parametrize("plugin", sorted(deprecated.DEPRECATED_EXTERNAL_PLUGINS))
@pytest.mark.filterwarnings("default")
def test_external_plugins_integrated(testdir, plugin):
testdir.syspathinsert()