From 92d3ba0bf7549aa6f850574214cfbe3e994fdba3 Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Wed, 7 Oct 2015 11:45:55 -0400 Subject: [PATCH] [Test] Enable DeprecationWarning in Python test suite --- test/python/runCythonTests.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/python/runCythonTests.py b/test/python/runCythonTests.py index 25a68346b5..5a757d67bb 100644 --- a/test/python/runCythonTests.py +++ b/test/python/runCythonTests.py @@ -21,7 +21,9 @@ import sys import os +import warnings +warnings.simplefilter('default') cantera_root = os.path.relpath(__file__).split(os.sep)[:-1] + ['..', '..'] py_version = 'python3' if sys.version_info[0] == 3 else 'python2' module_path = os.path.abspath(os.sep.join(cantera_root + ['build', py_version]))