File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -128,15 +128,15 @@ Running Tests in Parallel
128
128
-------------------------
129
129
130
130
The modified PHPUnit script allows running tests in parallel by providing
131
- a directory containing multiple suites with their own ``phpunit.xml.dist ``.
131
+ a directory containing multiple test suites with their own ``phpunit.xml.dist ``.
132
132
133
133
.. code-block :: terminal
134
134
135
- ├── tests
136
- │ ├── Functional
135
+ ├── tests/
136
+ │ ├── Functional/
137
137
│ │ ├── ...
138
138
│ │ └── phpunit.xml.dist
139
- │ ├── Unit
139
+ │ ├── Unit/
140
140
│ │ ├── ...
141
141
│ │ └── phpunit.xml.dist
142
142
@@ -147,8 +147,8 @@ a directory containing multiple suites with their own ``phpunit.xml.dist``.
147
147
The modified PHPUnit script will recursively go through the provided directory,
148
148
up to a depth of 3 subfolders or the value specified by the environment variable
149
149
``SYMFONY_PHPUNIT_MAX_DEPTH ``, looking for ``phpunit.xml.dist `` files and then
150
- run each suite it finds in parallel, collecting their output and display each
151
- suites test results in their own section.
150
+ running each suite it finds in parallel, collecting their output and displaying
151
+ each test suite results in their own section.
152
152
153
153
Trigger Deprecation Notices
154
154
---------------------------
You can’t perform that action at this time.
0 commit comments