python-click/tests/conftest.py

9 lines
131 B
Python
Raw Normal View History

2014-10-16 20:40:34 +02:00
import pytest
2020-07-21 08:23:42 +02:00
from click.testing import CliRunner
2014-10-16 20:40:34 +02:00
2020-07-21 08:23:42 +02:00
@pytest.fixture(scope="function")
2014-10-16 20:40:34 +02:00
def runner(request):
return CliRunner()