我如何在一个命令中 运行 多个代码接收套件(但不是全部)?
How can I run multiple codeception suites (but not all) in one command?
在 PHP Codeception test framework 中,我希望能够同时 运行 多个套件。
我可以运行他们都这样:
codecept run
或者我可以 运行 像这样的个人套房:
codecept run acceptance
codecept run unit
codecept run browser
但我希望能够一次 运行 两个,就像这样
codecept run acceptance,unit // This is not a thing. How can I do this?
获得此结果的一种方法是跳过您不想要的套件 运行。
codecept run --skip unit --skip acceptance
自 2017 年 2 月起,可以使用逗号语法 运行 多个套件。根据 Codeception docs:
codecept run unit,functional: run only unit and functional suites
在 PHP Codeception test framework 中,我希望能够同时 运行 多个套件。
我可以运行他们都这样:
codecept run
或者我可以 运行 像这样的个人套房:
codecept run acceptance
codecept run unit
codecept run browser
但我希望能够一次 运行 两个,就像这样
codecept run acceptance,unit // This is not a thing. How can I do this?
获得此结果的一种方法是跳过您不想要的套件 运行。
codecept run --skip unit --skip acceptance
自 2017 年 2 月起,可以使用逗号语法 运行 多个套件。根据 Codeception docs:
codecept run unit,functional: run only unit and functional suites