Skip to content

Commit

Permalink
Skip the narupa-lammps tests on windows
Browse files Browse the repository at this point in the history
This is a workaround the "access violation" error on the windows github
runner. See issue #33.
  • Loading branch information
jbarnoud committed Oct 19, 2023
1 parent 3b9e281 commit 69266aa
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions python-libraries/narupa-lammps/tests/test_lammps_converter.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
from narupa.lammps.mock import MockLammps
from narupa.trajectory.frame_data import PARTICLE_POSITIONS, PARTICLE_ELEMENTS
from narupa.trajectory import FrameData
import sys

pytestmark = pytest.mark.skipif(
sys.platform == "win32",
reason=(
"These tests can break the windows test runner on github. "
"This is tracked in issue #33: "
"<https://github.com/IRL2/narupa-protocol/issues/33>."
),
)


@pytest.fixture
Expand Down

0 comments on commit 69266aa

Please sign in to comment.