Skip to content

Commit 1918649

Browse files
chore: rename 'pytest_command' to 'python_path' (#344)
We add 'pytest_command' so that users can specify the pytest command to use. That is still confusing for users to setup the config. Plus people are more used to give a python path to execute. So I think it's good idea to replace 'pytest_command' to the simpler 'python_path'.
1 parent 0ae5f0d commit 1918649

File tree

2 files changed

+10
-16
lines changed

2 files changed

+10
-16
lines changed

codecov_cli/runners/pytest_standard_runner.py

+6-8
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,9 @@
1717

1818
class PytestStandardRunnerConfigParams(dict):
1919
@property
20-
def pytest_command(self) -> List[str]:
21-
command_from_config = self.get("pytest_command")
22-
if isinstance(command_from_config, str):
23-
logger.warning("pytest_command should be a list")
24-
command_from_config = command_from_config.split(" ")
25-
return command_from_config or ["python", "-m", "pytest"]
20+
def python_path(self) -> str:
21+
python_path = self.get("python_path")
22+
return python_path or "python"
2623

2724
@property
2825
def collect_tests_options(self) -> List[str]:
@@ -49,6 +46,7 @@ def coverage_root(self) -> str:
4946
class PytestStandardRunner(LabelAnalysisRunnerInterface):
5047

5148
dry_run_runner_options = ["--cov-context=test"]
49+
params: PytestStandardRunnerConfigParams
5250

5351
def __init__(self, config_params: Optional[dict] = None) -> None:
5452
super().__init__()
@@ -70,7 +68,7 @@ def _execute_pytest(self, pytest_args: List[str], capture_output: bool = True):
7068
Raises Exception if pytest fails
7169
Returns the complete pytest output
7270
"""
73-
command = self.params.pytest_command + pytest_args
71+
command = [self.params.python_path, "-m", "pytest"] + pytest_args
7472
try:
7573
result = subprocess.run(
7674
command,
@@ -101,7 +99,7 @@ def collect_tests(self):
10199
"Collecting tests",
102100
extra=dict(
103101
extra_log_attributes=dict(
104-
pytest_command=self.params.pytest_command,
102+
pytest_command=[self.params.python_path, "-m", "pytest"],
105103
pytest_options=options_to_use,
106104
),
107105
),

tests/runners/test_pytest_standard_runner.py

+4-8
Original file line numberDiff line numberDiff line change
@@ -39,22 +39,18 @@ def test_execute_pytest(self, mock_subprocess):
3939
)
4040
assert result == output
4141

42-
@pytest.mark.parametrize(
43-
"command_configured", [["pyenv", "pytest"], "pyenv pytest"]
44-
)
42+
@pytest.mark.parametrize("python_path", ["/usr/bin/python", "venv/bin/python"])
4543
@patch("codecov_cli.runners.pytest_standard_runner.subprocess")
46-
def test_execute_pytest_user_provided_command(
47-
self, mock_subprocess, command_configured
48-
):
44+
def test_execute_pytest_user_provided_command(self, mock_subprocess, python_path):
4945
output = "Output in stdout"
5046
return_value = MagicMock(stdout=output.encode("utf-8"))
5147
mock_subprocess.run.return_value = return_value
5248

53-
runner = PytestStandardRunner(dict(pytest_command=command_configured))
49+
runner = PytestStandardRunner(dict(python_path=python_path))
5450

5551
result = runner._execute_pytest(["--option", "--ignore=batata"])
5652
mock_subprocess.run.assert_called_with(
57-
["pyenv", "pytest", "--option", "--ignore=batata"],
53+
[python_path, "-m", "pytest", "--option", "--ignore=batata"],
5854
capture_output=True,
5955
check=True,
6056
stdout=None,

0 commit comments

Comments
 (0)