Skip to content

Commit

Permalink
Added missing reason in skipif
Browse files Browse the repository at this point in the history
  • Loading branch information
Peter Meisrimel authored and Peter Meisrimel committed Nov 13, 2024
1 parent e8e5897 commit 1f275a3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_examples.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,8 @@ def test_mech_system_pendulum2(self):
"""
mech_system_pendulum.run_example('ind2',with_plots=False,with_test=True)

@pytest.mark.skipif(get_sundials_version() >= (4,))
@pytest.mark.skipif(get_sundials_version() >= (4,),
reason = "Needs fixing for modern SUNDIALS versions")
def test_mech_system_pendulum3(self):
"""
This tests the class Mechanical_system together with ind3 and ida
Expand Down

0 comments on commit 1f275a3

Please sign in to comment.