|
|
@ -1,9 +1,12 @@ |
|
|
import shutil |
|
|
import shutil |
|
|
|
|
|
import sys |
|
|
from pathlib import Path |
|
|
from pathlib import Path |
|
|
|
|
|
|
|
|
import pytest |
|
|
import pytest |
|
|
from typer.testing import CliRunner |
|
|
from typer.testing import CliRunner |
|
|
|
|
|
|
|
|
|
|
|
pytestmark = pytest.mark.skipif(sys.platform == "win32", reason="Skipping on Windows") |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(name="runner") |
|
|
@pytest.fixture(name="runner") |
|
|
def get_runner(): |
|
|
def get_runner(): |
|
|
|