pypy/tool/pytest/test/test_appsupport.py::test_apptest_skipif
testdir = <Testdir local('/tmp/pytest/pytest-of-buildslave/pytest-8444/test_apptest_skipif0')>
def test_apptest_skipif(testdir):
setpypyconftest(testdir)
p = testdir.makepyfile(apptest_raise="""
import pytest
@pytest.mark.skipif(True, reason="Bad test")
def test_bad():
assert False
def test_success():
assert True
""")
result = testdir.runpytest(p)
> assert result.ret == 0
E assert 1 == 0
E + where 1 = <_pytest.pytester.RunResult object at 0x7fa429ac3990>.ret
/build_dir/own-linux-x86-64/build/pypy/tool/pytest/test/test_appsupport.py:162: AssertionError
builder: own-linux-x86-64 build #10807
test: pypy/tool/pytest/test/test_appsupport/py/test_apptest_skipif