Skip to content

Commit 3b0022b

Browse files
committed
Document suite wildcards for multi application setup
1 parent 3a376bf commit 3b0022b

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/08-Customization.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -485,6 +485,23 @@ You should also specify the path to the `log` directory, where the reports and l
485485

486486
> Wildcards (*) can be used to specify multiple directories at once.
487487

488+
Since Codeception 4.2.0 it is possible to execute specific suites from multiple applications.
489+
490+
{% highlight bash %}
491+
492+
# Run unit suites from all included apps and NOT the root suite
493+
codecept run *::unit
494+
495+
# Run unit and functional suites from all included apps and NOT the root suite
496+
codecept run *::unit,*::functional
497+
498+
# Run included unit suites AND root unit suite
499+
codecept run unit,*::unit
500+
501+
# Run included unit suites and root functional suite
502+
codecept run functional,*::unit
503+
504+
{% endhighlight %}
488505

489506
## Conclusion
490507

0 commit comments

Comments
 (0)