1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
import sys
import pytest
@pytest.mark.skipif(sys.version_info < (3, 10), reason="requires python3.10 or higher")
def test_normal_pseudo_traceback(pytester):
"""
Should show a sequence of calls
"""
pytester.copy_example("examples/test_example_helpers.py")
result = pytester.runpytest("--check-max-tb=2")
result.assert_outcomes(failed=1, passed=0)
result.stdout.fnmatch_lines(
[
"*FAILURE: assert 1 == 0, first",
"*in test_func() -> helper1()",
"*in helper1() -> helper2()",
"*in helper2 -> assert 1 == 0",
"*AssertionError: assert 1 == 0",
"*FAILURE: assert 1 > 2, second",
"*in test_func() -> helper1()",
"*in helper1() -> helper2()",
"*in helper2 -> assert 1 > 2",
"*AssertionError: assert 1 > 2",
"*Failed Checks: 2*",
],
)
@pytest.mark.skipif(sys.version_info < (3, 10), reason="requires python3.10 or higher")
def test_tracebackhide(pytester):
"""
Should skip helper1, since it has __tracebackhide__ = True
"""
pytester.copy_example("examples/test_example_tracebackhide.py")
result = pytester.runpytest("--check-max-tb=2")
result.assert_outcomes(failed=1, passed=0)
result.stdout.no_fnmatch_line("*in helper1() -> helper2()")
|