tests: matplotlib figures explicitly closed in tests

This commit is contained in:
Fabian Joswig 2022-06-14 14:46:45 +01:00
parent 0d02e4d4b9
commit 612e6c742b
2 changed files with 5 additions and 0 deletions

View file

@ -1,6 +1,7 @@
import os
import numpy as np
import scipy
import matplotlib.pyplot as plt
import pyerrors as pe
import pytest
@ -440,6 +441,7 @@ def test_spaghetti_plot():
corr.spaghetti_plot(True)
corr.spaghetti_plot(False)
plt.close('all')
def _gen_corr(val, samples=2000):