在我们自动化测试过程中,经常会遇到功能阻塞、功能未实现、环境等一系列外部因素问题导致的一些用例执行不了,这时我们就可以用到跳过skip用例,如果我们注释掉或删除掉,后面还要进行恢复操作。
一、跳过测试类
该方法用于需要跳过的测试类,在测试类前面添加装饰器:@pytest.mark.skip()。
1.skip():被标记的类中所有方法测试用例都会被跳过
import pytest
@pytest.mark.skip()
class TestPhoneLogin:
def test_error_phone_format(self):
assert 1 == 1
def test_error_phone_longer(self):
assert 1 == 1
def test_error_phone_shorter(self):
assert 1 == 1
def test_error_write_verification_code(self):
assert 1 == 1
执行结果如下图所示:
2.skip(reason=''):被标记的测试类在执行过程中会直接跳过,结果会显示reason。
import pytest
@pytest.mark.skip(reason='该类不需要执行测试')
class TestPhoneLogin:
def test_error_phone_format(self):
assert 1 == 1
def test_error_phone_longer(self):
assert 1 == 1
def test_error_phone_shorter(self):
assert 1 == 1
def test_error_write_verification_code(self):
assert 1 == 1
在执行时使用”pytest -v -rs“,结果才会显示reason。若不添加“-rs“ÿ