pytest简易教程汇总,详见:https://www.cnblogs.com/uncleyong/p/17982846
应用场景
用来验证用例在随机(无序)执行时是否正常
插件安装
pip install pytest-random-order
使用方式
加参数:--random-order
示例
#!/usr/bin/env python # -*- coding: utf-8 -*- # @Author : 韧 # @wx :ren168632201 # @Blog :https://www.cnblogs.com/uncleyong/ def test_d(): print("---test_d") def test_c(): print("---test_c") def test_b(): print("---test_b") def test_a(): print("---test_a")
第一次结果:
第二次结果:和第一次顺序不一样
标签:插件,random,---,print,pytest,test,order From: https://www.cnblogs.com/uncleyong/p/18017570