摘要: import pytest# pytest会收集当前目录下的所有test_*.py *_test.py的所有用例# pytest设置编译方式 python解释器编译 pytest编译器编译def func(x): return x + 3def test_answer(): assert func( 阅读全文
posted @ 2022-04-15 22:15 千焱 阅读(40) 评论(0) 推荐(0) 编辑