Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
jswhit committed Dec 3, 2020
1 parent 4a6f1f8 commit 1782cf1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 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())

0 comments on commit 1782cf1

Please sign in to comment.