djLint/tests/conftest.py
2021-07-13 12:45:25 -05:00

17 lines
255 B
Python

import os
import tempfile
import pytest
from click.testing import CliRunner
@pytest.fixture
def runner():
yield CliRunner()
@pytest.fixture
def tmp_file():
tmp = tempfile.NamedTemporaryFile(delete=False)
yield tmp
os.unlink(tmp.name)