pypa-hatch/tests/cli/python/conftest.py

33 lines
769 B
Python

import secrets
import pytest
from hatch.utils.shells import detect_shell
@pytest.fixture(autouse=True)
def default_shells(platform):
return [] if platform.windows else [detect_shell(platform)[0]]
@pytest.fixture(autouse=True)
def isolated_python_directory(config_file):
config_file.model.dirs.python = 'isolated'
config_file.save()
@pytest.fixture(autouse=True)
def path_append(mocker):
return mocker.patch('userpath.append')
@pytest.fixture(autouse=True)
def disable_path_detectors(mocker):
mocker.patch('userpath.in_current_path', return_value=False)
mocker.patch('userpath.in_new_path', return_value=False)
@pytest.fixture
def dist_name(compatible_python_distributions):
return secrets.choice(compatible_python_distributions)