2008-08-16 23:26:59 +08:00
|
|
|
import py
|
|
|
|
|
|
|
|
pydir = py.path.local(py.__file__).dirpath()
|
|
|
|
pytestpath = pydir.join("bin", "py.test")
|
|
|
|
EXPECTTIMEOUT=10.0
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
class TestPyTest:
|
2009-03-17 15:03:49 +08:00
|
|
|
def test_config_error(self, testdir):
|
|
|
|
testdir.makeconftest("""
|
|
|
|
class ConftestPlugin:
|
|
|
|
def pytest_configure(self, config):
|
|
|
|
raise config.Error("hello")
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(testdir.tmpdir)
|
|
|
|
assert result.ret != 0
|
|
|
|
assert result.stderr.fnmatch_lines([
|
|
|
|
'config ERROR: hello'
|
|
|
|
])
|
2009-03-17 18:29:45 +08:00
|
|
|
|
|
|
|
def test_basetemp(self, testdir):
|
|
|
|
mytemp = testdir.tmpdir.mkdir("mytemp")
|
|
|
|
p = testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
def test_1():
|
|
|
|
py.test.ensuretemp('xyz')
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p, '--basetemp=%s' %mytemp)
|
|
|
|
assert result.ret == 0
|
|
|
|
assert mytemp.join('xyz').check(dir=1)
|
2009-03-17 15:03:49 +08:00
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_assertion_magic(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_this():
|
|
|
|
x = 0
|
|
|
|
assert x
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest(p)
|
|
|
|
extra = result.stdout.fnmatch_lines([
|
2008-08-16 23:26:59 +08:00
|
|
|
"> assert x",
|
|
|
|
"E assert 0",
|
|
|
|
])
|
|
|
|
assert result.ret == 1
|
2009-03-17 15:03:49 +08:00
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_collectonly_simple(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_func1():
|
|
|
|
pass
|
|
|
|
class TestClass:
|
|
|
|
def test_method(self):
|
|
|
|
pass
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest("--collectonly", p)
|
|
|
|
stderr = result.stderr.str().strip()
|
|
|
|
assert stderr.startswith("inserting into sys.path")
|
2008-08-16 23:26:59 +08:00
|
|
|
assert result.ret == 0
|
2009-02-27 18:18:27 +08:00
|
|
|
extra = result.stdout.fnmatch_lines(py.code.Source("""
|
|
|
|
<Module '*.py'>
|
2008-08-16 23:26:59 +08:00
|
|
|
<Function 'test_func1'*>
|
|
|
|
<Class 'TestClass'>
|
|
|
|
<Instance '()'>
|
|
|
|
<Function 'test_method'*>
|
|
|
|
""").strip())
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_collectonly_error(self, testdir):
|
|
|
|
p = testdir.makepyfile("import Errlkjqweqwe")
|
|
|
|
result = testdir.runpytest("--collectonly", p)
|
|
|
|
stderr = result.stderr.str().strip()
|
|
|
|
assert stderr.startswith("inserting into sys.path")
|
|
|
|
assert result.ret == 1
|
|
|
|
extra = result.stdout.fnmatch_lines(py.code.Source("""
|
|
|
|
<Module '*.py'>
|
|
|
|
*ImportError*
|
|
|
|
!!!*failures*!!!
|
|
|
|
*test_collectonly_error.py:1*
|
|
|
|
""").strip())
|
|
|
|
|
|
|
|
|
|
|
|
def test_nested_import_error(self, testdir):
|
|
|
|
p = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
import import_fails
|
|
|
|
def test_this():
|
|
|
|
assert import_fails.a == 1
|
2009-02-27 18:18:27 +08:00
|
|
|
""")
|
|
|
|
testdir.makepyfile(import_fails="import does_not_work")
|
|
|
|
result = testdir.runpytest(p)
|
|
|
|
extra = result.stdout.fnmatch_lines([
|
2008-08-16 23:26:59 +08:00
|
|
|
"> import import_fails",
|
|
|
|
"E ImportError: No module named does_not_work",
|
|
|
|
])
|
|
|
|
assert result.ret == 1
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_skipped_reasons(self, testdir):
|
|
|
|
testdir.makepyfile(
|
2008-08-16 23:26:59 +08:00
|
|
|
test_one="""
|
|
|
|
from conftest import doskip
|
|
|
|
def setup_function(func):
|
|
|
|
doskip()
|
|
|
|
def test_func():
|
|
|
|
pass
|
|
|
|
class TestClass:
|
|
|
|
def test_method(self):
|
|
|
|
doskip()
|
|
|
|
""",
|
|
|
|
test_two = """
|
|
|
|
from conftest import doskip
|
|
|
|
doskip()
|
|
|
|
""",
|
|
|
|
conftest = """
|
|
|
|
import py
|
|
|
|
def doskip():
|
|
|
|
py.test.skip('test')
|
|
|
|
"""
|
|
|
|
)
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest()
|
|
|
|
extra = result.stdout.fnmatch_lines([
|
2008-08-16 23:26:59 +08:00
|
|
|
"*test_one.py ss",
|
2009-02-27 18:18:27 +08:00
|
|
|
"*test_two.py S",
|
2008-08-16 23:26:59 +08:00
|
|
|
"___* skipped test summary *_",
|
|
|
|
"*conftest.py:3: *3* Skipped: 'test'",
|
|
|
|
])
|
|
|
|
assert result.ret == 0
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_deselected(self, testdir):
|
|
|
|
testpath = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_one():
|
|
|
|
pass
|
|
|
|
def test_two():
|
|
|
|
pass
|
|
|
|
def test_three():
|
|
|
|
pass
|
2009-02-27 18:18:27 +08:00
|
|
|
"""
|
2008-08-16 23:26:59 +08:00
|
|
|
)
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest("-k", "test_two:", testpath)
|
|
|
|
extra = result.stdout.fnmatch_lines([
|
|
|
|
"*test_deselected.py ..",
|
2008-08-16 23:26:59 +08:00
|
|
|
"=* 1 test*deselected by 'test_two:'*=",
|
|
|
|
])
|
|
|
|
assert result.ret == 0
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_no_skip_summary_if_failure(self, testdir):
|
|
|
|
testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
import py
|
|
|
|
def test_ok():
|
|
|
|
pass
|
|
|
|
def test_fail():
|
|
|
|
assert 0
|
|
|
|
def test_skip():
|
|
|
|
py.test.skip("dontshow")
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest()
|
|
|
|
assert result.stdout.str().find("skip test summary") == -1
|
2008-08-16 23:26:59 +08:00
|
|
|
assert result.ret == 1
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_passes(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_passes():
|
|
|
|
pass
|
|
|
|
class TestClass:
|
|
|
|
def test_method(self):
|
|
|
|
pass
|
|
|
|
""")
|
|
|
|
old = p1.dirpath().chdir()
|
|
|
|
try:
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest()
|
2008-08-16 23:26:59 +08:00
|
|
|
finally:
|
|
|
|
old.chdir()
|
2009-02-27 18:18:27 +08:00
|
|
|
extra = result.stdout.fnmatch_lines([
|
|
|
|
"test_passes.py ..",
|
|
|
|
"* 2 pass*",
|
2008-08-16 23:26:59 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 0
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_header_trailer_info(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_passes():
|
|
|
|
pass
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest()
|
2008-08-16 23:26:59 +08:00
|
|
|
verinfo = ".".join(map(str, py.std.sys.version_info[:3]))
|
2009-02-27 18:18:27 +08:00
|
|
|
extra = result.stdout.fnmatch_lines([
|
2008-08-16 23:26:59 +08:00
|
|
|
"*===== test session starts ====*",
|
2009-03-18 20:05:18 +08:00
|
|
|
"HOSTUP*INPROCESS* %s %s - Python %s*" %(
|
2008-08-16 23:26:59 +08:00
|
|
|
py.std.sys.platform, py.std.sys.executable, verinfo),
|
2009-02-27 18:18:27 +08:00
|
|
|
"*test_header_trailer_info.py .",
|
|
|
|
"=* 1 passed in *.[0-9][0-9] seconds *=",
|
2008-08-16 23:26:59 +08:00
|
|
|
])
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_traceback_failure(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def g():
|
|
|
|
return 2
|
|
|
|
def f(x):
|
|
|
|
assert x == g()
|
|
|
|
def test_onefails():
|
|
|
|
f(3)
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest(p1)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test_traceback_failure.py F",
|
2008-08-16 23:26:59 +08:00
|
|
|
"====* FAILURES *====",
|
|
|
|
"____*____",
|
|
|
|
"",
|
|
|
|
" def test_onefails():",
|
|
|
|
"> f(3)",
|
|
|
|
"",
|
2009-02-27 18:18:27 +08:00
|
|
|
"*test_*.py:6: ",
|
2008-08-16 23:26:59 +08:00
|
|
|
"_ _ _ *",
|
|
|
|
#"",
|
|
|
|
" def f(x):",
|
|
|
|
"> assert x == g()",
|
|
|
|
"E assert 3 == 2",
|
|
|
|
"E + where 2 = g()",
|
|
|
|
"",
|
2009-02-27 18:18:27 +08:00
|
|
|
"*test_traceback_failure.py:4: AssertionError"
|
2008-08-16 23:26:59 +08:00
|
|
|
])
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_capturing_outerr(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
import sys
|
|
|
|
def test_capturing():
|
|
|
|
print 42
|
|
|
|
print >>sys.stderr, 23
|
|
|
|
def test_capturing_error():
|
|
|
|
print 1
|
|
|
|
print >>sys.stderr, 2
|
|
|
|
raise ValueError
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest(p1)
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test_capturing_outerr.py .F",
|
2008-08-16 23:26:59 +08:00
|
|
|
"====* FAILURES *====",
|
|
|
|
"____*____",
|
2009-02-27 18:18:27 +08:00
|
|
|
"*test_capturing_outerr.py:8: ValueError",
|
2008-08-16 23:26:59 +08:00
|
|
|
"*--- Captured stdout ---*",
|
|
|
|
"1",
|
|
|
|
"*--- Captured stderr ---*",
|
|
|
|
"2",
|
|
|
|
])
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_showlocals(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_showlocals():
|
|
|
|
x = 3
|
|
|
|
y = "x" * 5000
|
|
|
|
assert 0
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest(p1, '-l')
|
|
|
|
result.stdout.fnmatch_lines([
|
2008-08-16 23:26:59 +08:00
|
|
|
#"_ _ * Locals *",
|
|
|
|
"x* = 3",
|
|
|
|
"y* = 'xxxxxx*"
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_dist_testing(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
import py
|
|
|
|
def test_fail0():
|
|
|
|
assert 0
|
|
|
|
def test_fail1():
|
|
|
|
raise ValueError()
|
|
|
|
def test_ok():
|
|
|
|
pass
|
|
|
|
def test_skip():
|
|
|
|
py.test.skip("hello")
|
|
|
|
""",
|
|
|
|
)
|
2009-03-18 07:58:06 +08:00
|
|
|
result = testdir.runpytest(p1, '-d', '--gateways=popen,popen')
|
2009-02-27 18:18:27 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-03-17 05:17:14 +08:00
|
|
|
"HOSTUP: popen*Python*",
|
2008-08-16 23:26:59 +08:00
|
|
|
#"HOSTUP: localhost*Python*",
|
|
|
|
#"HOSTUP: localhost*Python*",
|
2009-02-27 18:18:27 +08:00
|
|
|
"*2 failed, 1 passed, 1 skipped*",
|
2008-08-16 23:26:59 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 1
|
|
|
|
|
2009-03-17 14:10:40 +08:00
|
|
|
def test_dist_testing_conftest_specified(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
|
|
|
import py
|
|
|
|
def test_fail0():
|
|
|
|
assert 0
|
|
|
|
def test_fail1():
|
|
|
|
raise ValueError()
|
|
|
|
def test_ok():
|
|
|
|
pass
|
|
|
|
def test_skip():
|
|
|
|
py.test.skip("hello")
|
|
|
|
""",
|
|
|
|
)
|
|
|
|
testdir.makeconftest("""
|
2009-03-18 07:58:06 +08:00
|
|
|
pytest_option_gateways='popen,popen,popen'
|
2009-03-17 14:10:40 +08:00
|
|
|
""")
|
|
|
|
result = testdir.runpytest(p1, '-d')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"HOSTUP: popen*Python*",
|
|
|
|
#"HOSTUP: localhost*Python*",
|
|
|
|
#"HOSTUP: localhost*Python*",
|
|
|
|
"*2 failed, 1 passed, 1 skipped*",
|
|
|
|
])
|
|
|
|
assert result.ret == 1
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_dist_tests_with_crash(self, testdir):
|
2008-08-16 23:26:59 +08:00
|
|
|
if not hasattr(py.std.os, 'kill'):
|
|
|
|
py.test.skip("no os.kill")
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
import py
|
|
|
|
def test_fail0():
|
|
|
|
assert 0
|
|
|
|
def test_fail1():
|
|
|
|
raise ValueError()
|
|
|
|
def test_ok():
|
|
|
|
pass
|
|
|
|
def test_skip():
|
|
|
|
py.test.skip("hello")
|
|
|
|
def test_crash():
|
|
|
|
import time
|
|
|
|
import os
|
|
|
|
time.sleep(0.5)
|
|
|
|
os.kill(os.getpid(), 15)
|
|
|
|
"""
|
|
|
|
)
|
2009-03-18 07:58:06 +08:00
|
|
|
result = testdir.runpytest(p1, '-d', '--gateways=popen,popen,popen')
|
2009-02-27 18:18:27 +08:00
|
|
|
result.stdout.fnmatch_lines([
|
2009-03-17 05:17:14 +08:00
|
|
|
"*popen*Python*",
|
|
|
|
"*popen*Python*",
|
|
|
|
"*popen*Python*",
|
|
|
|
"HostDown*TERMINATED*",
|
2009-02-27 18:18:27 +08:00
|
|
|
"*3 failed, 1 passed, 1 skipped*"
|
2008-08-16 23:26:59 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 1
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_keyboard_interrupt(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
import py
|
|
|
|
def test_fail():
|
|
|
|
raise ValueError()
|
|
|
|
def test_inter():
|
|
|
|
raise KeyboardInterrupt()
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest(p1)
|
|
|
|
result.stdout.fnmatch_lines([
|
2008-08-16 23:26:59 +08:00
|
|
|
#"*test_inter() INTERRUPTED",
|
|
|
|
"*KEYBOARD INTERRUPT*",
|
2009-02-27 18:18:27 +08:00
|
|
|
"*1 failed*",
|
2008-08-16 23:26:59 +08:00
|
|
|
])
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_verbose_reporting(self, testdir):
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
import py
|
|
|
|
def test_fail():
|
|
|
|
raise ValueError()
|
|
|
|
def test_pass():
|
|
|
|
pass
|
|
|
|
class TestClass:
|
|
|
|
def test_skip(self):
|
|
|
|
py.test.skip("hello")
|
|
|
|
def test_gen():
|
|
|
|
def check(x):
|
|
|
|
assert x == 1
|
|
|
|
yield check, 0
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
result = testdir.runpytest(p1, '-v')
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*test_verbose_reporting.py:2: test_fail*FAIL",
|
|
|
|
"*test_verbose_reporting.py:4: test_pass*PASS",
|
|
|
|
"*test_verbose_reporting.py:7: TestClass.test_skip*SKIP",
|
|
|
|
"*test_verbose_reporting.py:10: test_gen*FAIL",
|
2008-08-16 23:26:59 +08:00
|
|
|
])
|
|
|
|
assert result.ret == 1
|
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
class TestInteractive:
|
|
|
|
def getspawn(self, tmpdir):
|
2008-09-21 23:15:28 +08:00
|
|
|
pexpect = py.test.importorskip("pexpect")
|
2009-03-17 21:10:17 +08:00
|
|
|
basetemp = tmpdir.mkdir("basetemp")
|
2008-08-16 23:26:59 +08:00
|
|
|
def spawn(cmd):
|
2009-03-17 21:10:17 +08:00
|
|
|
cmd = cmd + " --basetemp=" + str(basetemp)
|
2009-02-27 18:18:27 +08:00
|
|
|
return pexpect.spawn(cmd, logfile=tmpdir.join("spawn.out").open("w"))
|
2008-08-16 23:26:59 +08:00
|
|
|
return spawn
|
2008-09-10 05:40:21 +08:00
|
|
|
|
|
|
|
def requirespexpect(self, version_needed):
|
2009-03-18 20:05:18 +08:00
|
|
|
pexpect = py.test.importorskip("pexpect")
|
2008-09-10 05:40:21 +08:00
|
|
|
ver = tuple(map(int, pexpect.__version__.split(".")))
|
|
|
|
if ver < version_needed:
|
|
|
|
py.test.skip("pexpect version %s needed" %(".".join(map(str, version_needed))))
|
2008-08-16 23:26:59 +08:00
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_pdb_interaction(self, testdir):
|
2008-09-10 05:40:21 +08:00
|
|
|
self.requirespexpect((2,3))
|
2009-02-27 18:18:27 +08:00
|
|
|
spawn = self.getspawn(testdir.tmpdir)
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_1():
|
2009-02-27 18:18:27 +08:00
|
|
|
i = 0
|
|
|
|
assert i == 1
|
2008-08-16 23:26:59 +08:00
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
child = spawn("%s %s --pdb %s" % (py.std.sys.executable, pytestpath, p1))
|
2008-09-10 02:18:22 +08:00
|
|
|
child.timeout = EXPECTTIMEOUT
|
2009-02-27 18:18:27 +08:00
|
|
|
#child.expect(".*def test_1.*")
|
|
|
|
child.expect(".*i = 0.*")
|
2008-10-07 17:26:56 +08:00
|
|
|
child.expect("(Pdb)")
|
2008-08-16 23:26:59 +08:00
|
|
|
child.sendeof()
|
2009-02-27 18:18:27 +08:00
|
|
|
child.expect("1 failed")
|
2008-09-10 02:18:22 +08:00
|
|
|
if child.isalive():
|
|
|
|
child.wait()
|
2008-08-16 23:26:59 +08:00
|
|
|
|
2009-02-27 18:18:27 +08:00
|
|
|
def test_simple_looponfailing_interaction(self, testdir):
|
|
|
|
spawn = self.getspawn(testdir.tmpdir)
|
|
|
|
p1 = testdir.makepyfile("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_1():
|
|
|
|
assert 1 == 0
|
|
|
|
""")
|
2009-02-27 18:18:27 +08:00
|
|
|
p1.setmtime(p1.mtime() - 50.0)
|
|
|
|
child = spawn("%s %s --looponfailing %s" % (py.std.sys.executable, pytestpath, p1))
|
2008-08-16 23:26:59 +08:00
|
|
|
child.timeout = EXPECTTIMEOUT
|
|
|
|
child.expect("assert 1 == 0")
|
2009-02-27 18:18:27 +08:00
|
|
|
child.expect("test_simple_looponfailing_interaction.py:")
|
|
|
|
child.expect("1 failed")
|
2008-08-16 23:26:59 +08:00
|
|
|
child.expect("waiting for changes")
|
2009-02-27 18:18:27 +08:00
|
|
|
p1.write(py.code.Source("""
|
2008-08-16 23:26:59 +08:00
|
|
|
def test_1():
|
|
|
|
assert 1 == 1
|
|
|
|
"""))
|
2009-02-27 18:18:27 +08:00
|
|
|
child.expect("MODIFIED.*test_simple_looponfailing_interaction.py", timeout=4.0)
|
|
|
|
child.expect("1 passed", timeout=5.0)
|
2008-08-16 23:26:59 +08:00
|
|
|
child.kill(15)
|
2009-03-18 05:11:23 +08:00
|
|
|
|
|
|
|
@py.test.mark.xfail("need new cmdline option")
|
|
|
|
def test_dist_each(self, testdir):
|
|
|
|
for name in ("python2.4", "python2.5"):
|
|
|
|
if not py.path.local.sysfind(name):
|
|
|
|
py.test.skip("%s not found" % name)
|
|
|
|
testdir.makepyfile(__init__="", test_one="""
|
|
|
|
import sys
|
|
|
|
def test_hello():
|
|
|
|
print sys.version_info[:2]
|
|
|
|
assert 0
|
|
|
|
""")
|
|
|
|
result = testdir.runpytest("--dist-each", "--gateways=popen-python2.5,popen-python2.4")
|
|
|
|
assert result.ret == 1
|
|
|
|
result.stdout.fnmatch_lines([
|
|
|
|
"*popen-python2.5*FAIL*",
|
|
|
|
"*popen-python2.4*FAIL*",
|
|
|
|
"*2 failed*"
|
|
|
|
])
|
|
|
|
|