如何在eclipse中将参数传递给pytest测试

时间:2017-09-18 04:55:24

标签: python eclipse ide pytest

我正在使用Eclipse IDE进行一个使用pytest编写测试用例的项目。我已经将pyunit环境配置为使用“py.test runner”而不是“PyDev test runner”,但是,我无法为pytest传递任何参数。

所以这是我在终端中运行的示例命令 -

pytest --server-version=5.0.0-3516 --sync-gateway-version=1.5.0-557 --sync-gateway-config-file resources/sync_gateway_configs/sync_gateway_default_cc.json --mode=cc testsuites/syncgateway/functional/tests/

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

所以我找出了传递参数的方法,并选择了一个想要运行的测试用例。所以这里是如何传递参数的快照。

enter image description here

要运行特定案例,请使用ctl + f9,然后选择该文件的大小写。现在要调试它,使用shift键选择案例。

希望这有助于其他人