summaryrefslogtreecommitdiff
path: root/testing/deprecated_test.py
diff options
context:
space:
mode:
authorBruno Oliveira <nicoddemus@gmail.com>2019-07-05 19:04:55 -0300
committerBruno Oliveira <nicoddemus@gmail.com>2019-07-05 19:05:55 -0300
commitf1b8431d9969cf93d1e0425344a7a67ce206e077 (patch)
tree0319bf1a2d8bf92e1fe79953060a681f7b652a49 /testing/deprecated_test.py
parentb1928f878d33b912851391c32adb4c0b91fb70c0 (diff)
downloadpytest-f1b8431d9969cf93d1e0425344a7a67ce206e077.tar.gz
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.
Diffstat (limited to 'testing/deprecated_test.py')
-rw-r--r--testing/deprecated_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/deprecated_test.py b/testing/deprecated_test.py
index 5cbb694b1..39439ab44 100644
--- a/testing/deprecated_test.py
+++ b/testing/deprecated_test.py
@@ -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()