From d1b9d3e6ad4b8f1f7c47b5d03500e738faee09cf Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Thu, 23 May 2013 19:33:02 +0000 Subject: [PATCH] [Test] Disabled a test that requires a feature missing from the old CVODE --- interfaces/cython/cantera/test/test_reactor.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/interfaces/cython/cantera/test/test_reactor.py b/interfaces/cython/cantera/test/test_reactor.py index 175a02ed1..c493b559c 100644 --- a/interfaces/cython/cantera/test/test_reactor.py +++ b/interfaces/cython/cantera/test/test_reactor.py @@ -577,6 +577,9 @@ class TestFlowReactor(utilities.CanteraTest): self.assertNear(v0, r.speed) self.assertNear(r.distance, v0 * t) + @unittest.skipUnless(ct._have_sundials(), + "Disabled until there is an interface for setting the " + "max_err_test_fails parameter for the old CVODE") def test_reacting(self): g = ct.Solution('gri30.xml') g.TPX = 1400, 20*101325, 'CO:1.0, H2O:1.0'