From 9eff939b023673ed6a1d5306effda7d4db85c459 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Wed, 20 Nov 2013 15:46:23 +0100 Subject: [PATCH] remove testing of xdist+genscript -- doesn't really make sense because for installing pytest-xdist you need pytest installed which defeats the purpose of genscript. --- testing/test_genscript.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/testing/test_genscript.py b/testing/test_genscript.py index eb2e634b5..f790d546a 100644 --- a/testing/test_genscript.py +++ b/testing/test_genscript.py @@ -35,14 +35,3 @@ def test_gen(testdir, anypython, standalone): result = standalone.run(anypython, testdir, p) assert result.ret != 0 -def test_rundist(testdir, pytestconfig, standalone): - pytestconfig.pluginmanager.skipifmissing("xdist") - testdir.makepyfile(""" - def test_one(): - pass - """) - result = standalone.run(sys.executable, testdir, '-n', '3') - assert result.ret == 0 - result.stdout.fnmatch_lines([ - "*1 passed*", - ])