forked from mirrors/gecko-dev
MozReview-Commit-ID: 5qfK6OygVMH --HG-- rename : third_party/python/pytest/_pytest/vendored_packages/pluggy-0.4.0.dist-info/LICENSE.txt => third_party/python/pluggy/LICENSE rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_a/__init__.py rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_b/__init__.py rename : third_party/python/pytest/_pytest/_code/__init__.py => third_party/python/pytest/src/_pytest/_code/__init__.py extra : rebase_source : d80873f2b1899decefbddddfc2f69ae045925b81
38 lines
448 B
Python
38 lines
448 B
Python
import pytest
|
|
|
|
xfail = pytest.mark.xfail
|
|
|
|
|
|
@xfail
|
|
def test_hello():
|
|
assert 0
|
|
|
|
|
|
@xfail(run=False)
|
|
def test_hello2():
|
|
assert 0
|
|
|
|
|
|
@xfail("hasattr(os, 'sep')")
|
|
def test_hello3():
|
|
assert 0
|
|
|
|
|
|
@xfail(reason="bug 110")
|
|
def test_hello4():
|
|
assert 0
|
|
|
|
|
|
@xfail('pytest.__version__[0] != "17"')
|
|
def test_hello5():
|
|
assert 0
|
|
|
|
|
|
def test_hello6():
|
|
pytest.xfail("reason")
|
|
|
|
|
|
@xfail(raises=IndexError)
|
|
def test_hello7():
|
|
x = []
|
|
x[1] = 1
|