Skip to content

Commit

Permalink
Don't run test_bntr on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
timmens committed Dec 29, 2023
1 parent 943839f commit 5e90948
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tests/optimization/test_pounders_integration.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
"""Test suite for the internal pounders interface."""
import sys

from functools import partial
from itertools import product

Expand Down Expand Up @@ -88,6 +90,7 @@ def trustregion_subproblem_options():
TEST_CASES = universal_tests + specific_tests


@pytest.mark.skipif(sys.platform != "win32", reason="Not accurate on Windows.")
@pytest.mark.parametrize("start_vec, conjugate_gradient_method_sub", TEST_CASES)
def test_bntr(
start_vec,
Expand Down

0 comments on commit 5e90948

Please sign in to comment.