Source code for openpyxl.writer.tests.conftest
import pytest
@pytest.fixture
[docs]def datadir():
"""DATADIR as a LocalPath"""
import os
here = os.path.split(__file__)[0]
DATADIR = os.path.join(here, "data")
from py._path.local import LocalPath
return LocalPath(DATADIR)