Python测试框架pytest(02)PyCharm设置运行pytest、pytest.main()
2021/10/18 14:39:26
本文主要是介绍Python测试框架pytest(02)PyCharm设置运行pytest、pytest.main(),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1、PyCharm设置运行pytest
打开PyCharm,依次打开Preferences--->Tools--->Python Integrated Tools,将Testing里的Default test runner选择项选为pytest,保存即可。
右键运行,可以看到以pytest去运行。
2、pytest.main()
main 函数有2个可选参数:
args:命令行参数列表。
plugins:初始化期间要自动注册的插件对象列表。
pytest.main() 不带任何参数时与在命令行直接运行 pytest 命令一样,默认运行的是当前目录及子目录的所有文件夹的测试用例。
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 微信公众号:AllTests软件测试 """ import pytest pytest.main()
2.1、带参数运行
1、在命令行运行pytest -s
在pytest.main()里面等同于
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 微信公众号:AllTests软件测试 """ import pytest pytest.main(["-s"])
2、在命令行运行pytest -s -x
在pytest.main()里面等同于
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 微信公众号:AllTests软件测试 """ import pytest pytest.main(["-s", "-x"])
2.2、运行指定用例
1、命令行跳转到项目根目录,执行test/case文件夹下的全部用例
pytest test/case
在pytest.main()里面等同于
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 微信公众号:AllTests软件测试 """ import pytest pytest.main(["test/case"])
2、命令行跳转到项目根目录,执行test/case/test_case1.py文件里的全部用例
pytest test/case/test_case1.py
在pytest.main()里面等同于
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 微信公众号:AllTests软件测试 """ import pytest pytest.main(["test/case/test_case1.py"])
3、命令行跳转到项目根目录,执行test/case/test_case1.py文件里的test_login用例
pytest test/case/test_case1.py::test_login
在pytest.main()里面等同于
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 微信公众号:AllTests软件测试 """ import pytest pytest.main(["test/case/test_case1.py::test_login"])
2.3、加载指定插件
#!/usr/bin/env python # -*- coding: utf-8 -*- """ 微信公众号:AllTests软件测试 """ import pytest pytest.main(["test/case"], plugins=[插件名])
这篇关于Python测试框架pytest(02)PyCharm设置运行pytest、pytest.main()的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-14获取参数学习:Python编程入门教程
- 2024-11-14Python编程基础入门
- 2024-11-14Python编程入门指南
- 2024-11-13Python基础教程
- 2024-11-12Python编程基础指南
- 2024-11-12Python基础编程教程
- 2024-11-08Python编程基础与实践示例
- 2024-11-07Python编程基础指南
- 2024-11-06Python编程基础入门指南
- 2024-11-06怎么使用python 计算两个GPS的距离功能-icode9专业技术文章分享