Skip to content

Commit 2454097

Browse files
committed
Update the documentation
1 parent 10a2ff5 commit 2454097

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

help_docs/customizing_test_runs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ There's more info on that here: [pytest-xdist](https://pypi.org/project/pytest-x
287287
<summary> ▶️ <code>-n8 --dist=loadgroup</code> (<b>click to expand</b>)</summary>
288288
<div>
289289

290-
* Tests are grouped by the ``xdist_group`` mark. Groups are distributed to available workers as whole units. This guarantees that all tests with same ``xdist_group`` name run in the same worker.
290+
<ul><li>Tests are grouped by the <code>xdist_group</code> mark. Groups are distributed to available workers as whole units. This guarantees that all tests with the same <code>xdist_group</code> name run in the same worker.</li></ul>
291291

292292
```python
293293
@pytest.mark.xdist_group(name="group1")
@@ -300,7 +300,7 @@ class Test:
300300
pass
301301
```
302302

303-
> This makes ``test_1`` and ``Test::test_2`` run in the same worker. Tests without the ``xdist_group`` mark are distributed normally.
303+
<blockquote><p>This makes <code>test_1</code> and <code>Test::test_2</code> run in the same worker. Tests without the <code>xdist_group</code> mark are distributed normally.</p></blockquote>
304304

305305
</div>
306306
</details>

0 commit comments

Comments
 (0)