Skip to content

Commit 9e064fd

Browse files
chore: remove include_curr_dir option (#255)
The `include_curr_dir` option is only for strict_mode in python standard runner. Few people will ever use the strict mode. Realistically, no one will ever make `include_curr_dir` False because it increases the change that ATS won't work (and it doesn't work on enough siturations to add one more). I'm keeping the `strict_mode`, but making the `include_curr_dir` always True. The default was already True, but now there's no choice.
1 parent c74b971 commit 9e064fd

File tree

3 files changed

+9
-45
lines changed

3 files changed

+9
-45
lines changed

codecov_cli/runners/python_standard_runner.py

+5-14
Original file line numberDiff line numberDiff line change
@@ -53,30 +53,21 @@ def strict_mode(self) -> bool:
5353
"""
5454
return self.get("strict_mode", False)
5555

56-
@property
57-
def include_curr_dir(self) -> bool:
58-
"""
59-
Only valid for 'strict mode'
60-
Account for the difference 'pytest' vs 'python -m pytest'
61-
https://docs.pytest.org/en/7.1.x/how-to/usage.html#calling-pytest-through-python-m-pytest
62-
"""
63-
return self.get("include_curr_dir", True)
64-
6556

6657
def _include_curr_dir(method):
6758
"""
6859
Account for the difference 'pytest' vs 'python -m pytest'
6960
https://docs.pytest.org/en/7.1.x/how-to/usage.html#calling-pytest-through-python-m-pytest
61+
Used only in strict_mode
7062
"""
7163

7264
def call_method(self, *args, **kwargs):
73-
include_curr_dir = self.params.include_curr_dir
7465
curr_dir = getcwd()
75-
if include_curr_dir:
76-
path.append(curr_dir)
66+
path.append(curr_dir)
67+
7768
result = method(self, *args, **kwargs)
78-
if include_curr_dir:
79-
path.remove(curr_dir)
69+
70+
path.remove(curr_dir)
8071
return result
8172

8273
return call_method

tests/runners/test_python_standard_runner.py

+2-30
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ class TestPythonStandardRunner(object):
4949

5050
def test_init_with_params(self):
5151
assert self.runner.params.collect_tests_options == []
52-
assert self.runner.params.include_curr_dir == True
52+
assert self.runner.params.strict_mode == False
53+
assert self.runner.params.coverage_root == "./"
5354

5455
config_params = dict(
5556
collect_tests_options=["--option=value", "-option"],
56-
include_curr_dir=False,
5757
)
5858
runner_with_params = PythonStandardRunner(config_params)
5959
assert runner_with_params.params == config_params
@@ -245,34 +245,6 @@ def side_effect(command, *args, **kwargs):
245245
def test_parse_captured_output_error(self, error, expected):
246246
assert self.runner.parse_captured_output_error(error) == expected
247247

248-
@patch("codecov_cli.runners.python_standard_runner.getcwd")
249-
@patch("codecov_cli.runners.python_standard_runner.path")
250-
@patch("codecov_cli.runners.python_standard_runner.get_context")
251-
def test_execute_pytest_strict_NOT_include_curr_dir(
252-
self, mock_get_context, mock_sys_path, mock_getcwd
253-
):
254-
output = "Output in stdout"
255-
mock_queue = MagicMock()
256-
mock_queue.get.side_effect = [{"output": output}, {"result": ExitCode.OK}]
257-
mock_process = MagicMock()
258-
mock_process.exitcode = 0
259-
mock_get_context.return_value.Queue.return_value = mock_queue
260-
mock_get_context.return_value.Process.return_value = mock_process
261-
262-
config_params = dict(include_curr_dir=False)
263-
runner = PythonStandardRunner(config_params=config_params)
264-
result = runner._execute_pytest_strict(["--option", "--ignore=batata"])
265-
mock_get_context.return_value.Queue.assert_called_with(2)
266-
mock_get_context.return_value.Process.assert_called_with(
267-
target=_execute_pytest_subprocess,
268-
args=[["--option", "--ignore=batata"], mock_queue, pyrunner_stdout, True],
269-
)
270-
assert mock_queue.get.call_count == 2
271-
assert result == output
272-
mock_sys_path.append.assert_not_called()
273-
mock_getcwd.assert_called()
274-
assert result == output
275-
276248
def test_collect_tests(self, mocker):
277249
collected_test_list = [
278250
"tests/services/upload/test_upload_service.py::test_do_upload_logic_happy_path_legacy_uploader"

tests/runners/test_runners.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ def test_python_standard_runner_with_options(self):
2424
runner_instance.params.collect_tests_options
2525
== config_params["collect_tests_options"]
2626
)
27-
assert runner_instance.params.include_curr_dir == True
27+
assert runner_instance.params.strict_mode == False
28+
assert runner_instance.params.coverage_root == "./"
2829

2930
def test_get_dan_runner_with_params(self):
3031
config = {

0 commit comments

Comments
 (0)