Source code for nltk.test.unit.conftest
import pytest
[docs]@pytest.fixture(autouse=True)
def mock_plot(mocker):
""" Disable matplotlib plotting in test code """
try:
import matplotlib.pyplot as plt
mocker.patch.object(plt, 'gca')
mocker.patch.object(plt, 'show')
except ImportError:
pass