mirror of
https://github.com/fedora-python/tox-current-env.git
synced 2024-12-24 00:56:16 +01:00
37 lines
865 B
Python
37 lines
865 B
Python
import shutil
|
|
|
|
import pytest
|
|
from utils import FIXTURES_DIR, TOX4
|
|
|
|
|
|
@pytest.fixture(autouse=True)
|
|
def projdir(tmp_path, monkeypatch):
|
|
pwd = tmp_path / "projdir"
|
|
pwd.mkdir()
|
|
for fname in "tox.ini", "setup.py":
|
|
shutil.copy(FIXTURES_DIR / fname, pwd)
|
|
monkeypatch.chdir(pwd)
|
|
return pwd
|
|
|
|
|
|
if TOX4:
|
|
available_options = ("--print-deps-to-file=-", "--print-deps-to=-")
|
|
else:
|
|
available_options = (
|
|
"--print-deps-only",
|
|
"--print-deps-to-file=-",
|
|
"--print-deps-to=-",
|
|
)
|
|
|
|
|
|
@pytest.fixture(params=available_options)
|
|
def print_deps_stdout_arg(request):
|
|
"""Argument for printing deps to stdout"""
|
|
return request.param
|
|
|
|
|
|
@pytest.fixture(params=("--print-extras-to-file=-", "--print-extras-to=-"))
|
|
def print_extras_stdout_arg(request):
|
|
"""Argument for printing extras to stdout"""
|
|
return request.param
|