@pytest.mark.demo def test_add_02(): b = 1 + 2 assert 0 == b class TestAdd: pytestmark = pytest.mark.smoke def test_add_03(self): b = 1 + 2 print(f'b={b}') ...
確定! 回上一頁