如何在一个命令中运行多个代码集(但不是全部)?

时间:2015-12-22 07:56:31

标签: codeception

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?

2 个答案:

答案 0 :(得分:4)

获得此结果的一种方法是跳过您不想运行的套件。

codecept run --skip unit --skip acceptance

答案 1 :(得分:2)

截至2017年2月,可以使用逗号语法运行多个套件。根据{{​​3}}:

codecept run unit,functional: run only unit and functional suites