generated from Luis/nextjs-python-web-template
11 lines
207 B
Python
11 lines
207 B
Python
import subprocess
|
|
|
|
import pytest
|
|
|
|
|
|
# returns a temporary directory with a fake git repo
|
|
@pytest.fixture()
|
|
def git_repo_path(tmp_path):
|
|
subprocess.run(["mkdir", ".git"], cwd=tmp_path)
|
|
return tmp_path
|