diff options
| author | Bernát Gábor <bgabor8@bloomberg.net> | 2021-01-30 11:25:17 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-01-30 11:25:17 +0000 |
| commit | 6d9b2dff59f220f6b3bae1fedcb888fd113bf269 (patch) | |
| tree | 9e01f09b8f09425e5fe74d20b0e7c233d7a2df9f /tests/session/cmd/test_sequential.py | |
| parent | 1e4b3cd8891fd42231ced02c6f953209a0a0f5b7 (diff) | |
| download | tox-git-6d9b2dff59f220f6b3bae1fedcb888fd113bf269.tar.gz | |
Add support for install_command virtualenv settings (#1886)
Signed-off-by: Bernát Gábor <bgabor8@bloomberg.net>
Diffstat (limited to 'tests/session/cmd/test_sequential.py')
| -rw-r--r-- | tests/session/cmd/test_sequential.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/session/cmd/test_sequential.py b/tests/session/cmd/test_sequential.py index e9b73a71..279fd905 100644 --- a/tests/session/cmd/test_sequential.py +++ b/tests/session/cmd/test_sequential.py @@ -5,7 +5,7 @@ from pathlib import Path from signal import SIGINT from subprocess import PIPE, Popen from time import sleep -from typing import Any, Dict, List, Tuple, Union +from typing import Any, Dict, List, Optional, Tuple, Union import pytest from re_assert import Matches @@ -45,7 +45,7 @@ def test_run_sequential_fail(tox_project: ToxProjectCreator) -> None: @pytest.mark.timeout(120) @pytest.mark.integration -def test_result_json_sequential(tox_project: ToxProjectCreator) -> None: +def test_result_json_sequential(tox_project: ToxProjectCreator, enable_pip_pypi_access: Optional[str]) -> None: cmd = [ "- python -c 'import sys; print(\"magic fail\", file=sys.stderr); sys.exit(1)'", "python -c 'import sys; print(\"magic pass\"); sys.exit(0)'", |
