Skip to content

Commit 569e1bc

Browse files
Docs fix (#19)
1 parent 2e17d5a commit 569e1bc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
[![badge-ga](https://github.com/firedrakeproject/mpi-pytest/actions/workflows/ci_pipeline.yml/badge.svg?branch=master)](https://github.com/firedrakeproject/mpi-pytest/actions/workflows/ci_pipeline.yml)
2-
31
# mpi-pytest
42

53
Pytest plugin that lets you run tests in parallel with MPI.
@@ -53,7 +51,7 @@ to each test to allow one to select all tests with a particular number of proces
5351
For example, to select all parallel tests on 3 processors, one should run:
5452

5553
```bash
56-
$ mpiexec -n 3 pytest -m parallel[3]
54+
$ mpiexec -n 3 pytest -m "parallel[3]"
5755
```
5856

5957
Serial tests - those either unmarked or marked `@pytest.mark.parallel(1)` - can
@@ -103,7 +101,7 @@ with `mpiexec`, no additional configuration is necessary. For example, to run
103101
all of the parallel tests on 2 ranks one needs to execute:
104102

105103
```bash
106-
$ mpiexec -n 2 pytest -m parallel[2]
104+
$ mpiexec -n 2 pytest -m "parallel[2]"
107105
```
108106

109107
## `parallel_assert`

0 commit comments

Comments
 (0)