在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?
答案 0 :(得分:4)
获得此结果的一种方法是跳过您不想运行的套件。
codecept run --skip unit --skip acceptance
答案 1 :(得分:2)
截至2017年2月,可以使用逗号语法运行多个套件。根据{{3}}:
codecept run unit,functional: run only unit and functional suites