摘要:
1、安装Flask pip install Flask from flask import Flaskapp = Flask(__name__)@app.route("/index1")def hello(): return "hello world!"@app.route("/python")de 阅读全文
摘要:
1、一个参数传值 @pytest.mark.parametrize("a", [3,6,9])def test_a(self,a): print("test data:a=%d"%a) assert a%3 ==0 2、多个参数传值 @pytest.mark.parametrize("a,b",[( 阅读全文
摘要:
1、安装pytest pip install pytest 2、发现用例规则 3、运行方式 4、运行参数 5、pytest框架结构 6、fixture for example: import pytestdef add(x,y): return x + ydef test_add(): assert 阅读全文