Source code for postreise.plot.tests.conftest

import matplotlib.pyplot as plt
import pytest


[docs]@pytest.fixture(autouse=True) def plt_close(): yield plt.close("all")