Skip to content

Commit

Permalink
#1477 skip sens test in base_solver if klu not installed
Browse files Browse the repository at this point in the history
  • Loading branch information
martinjrobins committed Jul 22, 2021
1 parent 8d361fe commit 4c7bbe5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/unit/test_solvers/test_base_solver.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,6 +325,7 @@ def test_extrapolation_warnings(self):
with self.assertWarns(pybamm.SolverWarning):
solver.solve(model, t_eval=[0, 1])

@unittest.skipIf(not pybamm.have_idaklu(), "idaklu solver is not installed")
def test_sensitivities(self):

def exact_diff_a(y, a, b):
Expand Down

0 comments on commit 4c7bbe5

Please sign in to comment.