Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
radoering committed Nov 16, 2022
1 parent 13be22a commit 9eaec84
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/console/commands/test_run.py
@@ -1,5 +1,7 @@
from __future__ import annotations

import subprocess

from typing import TYPE_CHECKING

import pytest
Expand Down Expand Up @@ -127,7 +129,12 @@ def test_run_script_exit_code(
poetry_with_scripts: Poetry,
command_tester_factory: CommandTesterFactory,
tmp_venv: VirtualEnv,
mocker: MockerFixture,
) -> None:
mocker.patch(
"os.execvpe",
lambda file, args, env: subprocess.call([file] + args[1:], env=env),
)
install_tester = command_tester_factory(
"install",
poetry=poetry_with_scripts,
Expand Down

0 comments on commit 9eaec84

Please sign in to comment.