1
0
mirror of https://github.com/fedora-python/tox-current-env.git synced 2024-12-26 09:56:13 +01:00
github.com_fedora-python_to.../tests/conftest.py

41 lines
1.1 KiB
Python
Raw Normal View History

import os
2022-02-10 10:58:59 +01:00
import shutil
import pytest
from utils import FIXTURES_DIR, TOX4
@pytest.fixture(autouse=True)
def projdir(tmp_path, monkeypatch, worker_id):
2022-02-10 10:58:59 +01:00
pwd = tmp_path / "projdir"
pwd.mkdir()
for fname in "tox.ini", "setup.py":
shutil.copy(FIXTURES_DIR / fname, pwd)
monkeypatch.chdir(pwd)
# https://github.com/pypa/pip/issues/5345#issuecomment-386424455
monkeypatch.setenv("XDG_CACHE_HOME",
os.path.expanduser(f"~/.cache/pytest-xdist-{worker_id}"))
2022-02-10 10:58:59 +01:00
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