You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The MPIMarkerEnum class lists 4 markers: mpi, mpi_skip, mpi_xfail and mpi_break; the MPI_MARKERS constant right below lists only 3 of them (misses mpi) and the marker docs don't mention mpi_break.
The missing documentation is accidental, that should be fixed.
The MPI_MARKERS constant is correct—it's mapping the intent of the marker when being run under MPI to the appropriate pytest mark (as the mpi marker need do nothing when run under MPI, rather the inverse is true).
The
MPIMarkerEnum
class lists 4 markers:mpi
,mpi_skip
,mpi_xfail
andmpi_break
; theMPI_MARKERS
constant right below lists only 3 of them (missesmpi
) and the marker docs don't mentionmpi_break
.pytest-mpi/src/pytest_mpi/__init__.py
Lines 19 to 39 in 9ad369a
The text was updated successfully, but these errors were encountered: