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.
This commit is contained in:
holger krekel 2013-11-20 15:46:23 +01:00
parent 0a8b27ff49
commit 9eff939b02
1 changed files with 0 additions and 11 deletions

View File

@ -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*",
])