Skip to content

Commit f1b8431

Browse files
committed
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.
1 parent b1928f8 commit f1b8431

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

testing/deprecated_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def test_terminal_reporter_writer_attr(pytestconfig):
7070
assert terminal_reporter.writer is terminal_reporter._tw
7171

7272

73-
@pytest.mark.parametrize("plugin", deprecated.DEPRECATED_EXTERNAL_PLUGINS)
73+
@pytest.mark.parametrize("plugin", sorted(deprecated.DEPRECATED_EXTERNAL_PLUGINS))
7474
@pytest.mark.filterwarnings("default")
7575
def test_external_plugins_integrated(testdir, plugin):
7676
testdir.syspathinsert()

0 commit comments

Comments
 (0)