Skip to content

Commit 2930203

Browse files
committed
Fix code blocks
1 parent d265f25 commit 2930203

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

Book/tests/running_the_test_suite.rst

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -90,17 +90,19 @@ You can specify multiple target folders or files to run by separating each path
9090
Executing tests in parallel
9191
---------------------------
9292

93-
Since PHP 7.4 you are able to run tests in parallel by passing a ``-j<workers>`` flag, where workers is the number of parallel processes you want. e.g. ``-j4`` would run 4 tests at once.
93+
Since PHP 7.4 you are able to run tests in parallel by passing a ``-j<workers>`` flag to ``run-tests.php``, where ``<workers>`` is the number of parallel processes you want. For example, ``-j4`` would run 4 tests at once.
9494

9595
Example for running tests through run-tests.php:
96-
```
97-
run-tests.php -j8
98-
```
96+
97+
.. code-block:: bash
98+
99+
run-tests.php -j8
99100
100101
Example for running tests through make:
101-
```
102-
make test TESTS="-j8"
103-
```
102+
103+
.. code-block:: bash
104+
105+
make test TESTS="-j8"
104106
105107
More options
106108
------------

0 commit comments

Comments
 (0)