From 1782cf1c831c901c2e1cdaf5a09ef59f1ab67758 Mon Sep 17 00:00:00 2001 From: Jeff Whitaker Date: Thu, 3 Dec 2020 08:22:36 -0700 Subject: [PATCH] update --- test/run_tests.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/run_tests.py b/test/run_tests.py index fc6d0293..76361e52 100644 --- a/test/run_tests.py +++ b/test/run_tests.py @@ -1,11 +1,11 @@ # run all matplotlib based tests import glob import matplotlib -matplotlib.use('Agg') matplotlib.rcParams.update(matplotlib.rcParamsDefault) +matplotlib.use('agg') # Find all test files. test_files = glob.glob('test_*.py') -test_files.remove('test_spectral.py') # skip spectral transform test +#test_files.remove('test_spectral.py') # skip spectral transform test for f in test_files: print('running %s...' % f) exec(open(f).read())