9 lines
110 B
Python
9 lines
110 B
Python
|
|
import pytest
|
||
|
|
|
||
|
|
|
||
|
|
@pytest.fixture
|
||
|
|
def runner():
|
||
|
|
from typer.testing import CliRunner
|
||
|
|
|
||
|
|
return CliRunner()
|