#Tutorials

Publicado el: 11 febrero 2023
en el canal de: RoadToAutomation -- Sadik
174
2

In this tutorials you will learn how to skip and fail test with reason

@pytest.mark.skip(reason="Failing due to defect and reported Jira Ticket 123")
pytest.skip("Test Inprogress")

@pytest.mark.skipif(sys.platform.startswith("win"), reason="Only for linux or Mac")

if sys.platform.startswith("win"):
pytest.skip("skipping windows-only tests", allow_module_level=True)

XFail: mark test functions as expected to fail
@pytest.mark.xfail
@pytest.mark.xfail(reason="There are some defect in scenario and issue reported in Jira with ID")
@pytest.mark.xfail(sys.platform == "win32", reason="There are some defect in scenario and issue reported in Jira with ID")


En esta página del sitio puede ver el video en línea #Tutorials de Duración hora minuto segunda en buena calidad , que subió el usuario RoadToAutomation -- Sadik 11 febrero 2023, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 174 veces y le gustó 2 a los espectadores. Disfruta viendo!