adding not implemented test to not forget about it
--HG-- branch : trunk
This commit is contained in:
parent
637f35b4a6
commit
4784046249
|
@ -329,7 +329,6 @@ class TestDSession:
|
||||||
session.senditems_load([item1])
|
session.senditems_load([item1])
|
||||||
# node2pending will become empty when the loop sees the report
|
# node2pending will become empty when the loop sees the report
|
||||||
rep = run(item1, node)
|
rep = run(item1, node)
|
||||||
|
|
||||||
session.queueevent("pytest_itemtestreport", rep=run(item1, node))
|
session.queueevent("pytest_itemtestreport", rep=run(item1, node))
|
||||||
|
|
||||||
# but we have a collection pending
|
# but we have a collection pending
|
||||||
|
@ -368,3 +367,13 @@ class TestDSession:
|
||||||
assert node.gateway.spec.popen
|
assert node.gateway.spec.popen
|
||||||
#XXX eq.geteventargs("pytest_testrunfinish")
|
#XXX eq.geteventargs("pytest_testrunfinish")
|
||||||
|
|
||||||
|
@py.test.mark.xfail("test implementation missing")
|
||||||
|
def test_collected_function_causes_remote_skip_at_module_level(self, testdir):
|
||||||
|
p = testdir.makepyfile("""
|
||||||
|
import py
|
||||||
|
py.test.importorskip("xyz")
|
||||||
|
def test_func():
|
||||||
|
pass
|
||||||
|
""")
|
||||||
|
# we need to be able to collect test_func locally but not in the subprocess
|
||||||
|
XXX
|
||||||
|
|
Loading…
Reference in New Issue