diff options
author | John L. Villalovos <john@sodarock.com> | 2021-11-25 13:03:20 -0800 |
---|---|---|
committer | John L. Villalovos <john@sodarock.com> | 2021-11-27 09:15:10 -0800 |
commit | e80dcb1dc09851230b00f8eb63e0c78fda060392 (patch) | |
tree | df900d1dfd1e12d7d3135c049f4a8a376ad56164 | |
parent | 70b9870f929c4db32fd2e1406db2122de9958bfd (diff) | |
download | gitlab-e80dcb1dc09851230b00f8eb63e0c78fda060392.tar.gz |
chore: remove pytest-console-scripts specific config
Remove the pytest-console-scripts specific config from the global
'[pytest]' config section.
Use the command line option `--script-launch-mode=subprocess`
Closes #1713
-rw-r--r-- | tox.ini | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -84,13 +84,10 @@ exclude_lines = if TYPE_CHECKING: if debug: -[pytest] -script_launch_mode = subprocess - [testenv:cli_func_v4] deps = -r{toxinidir}/requirements-docker.txt commands = - pytest --cov --cov-report xml tests/functional/cli {posargs} + pytest --script-launch-mode=subprocess --cov --cov-report xml tests/functional/cli {posargs} [testenv:py_func_v4] deps = -r{toxinidir}/requirements-docker.txt |