From 51a010bad444633cec58b57c3a69b534355f4360 Mon Sep 17 00:00:00 2001 From: chrysle Date: Tue, 24 Oct 2023 21:15:09 +0200 Subject: [PATCH] Update changelog and remove line ending from test assert --- CHANGELOG.md | 3 ++- tests/test_run.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d529d50de..b31b16d3ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,7 @@ ## dev -- Drop `setuptools` and `wheel` from the shared libraries +- Drop `setuptools` and `wheel` from the shared libraries. This results in less time consumption when the libraries are +automatically upgraded. - Allow running `pip` with `pipx run` - Make usage message in `pipx run` show `package_or_url`, so extra will be printed out as well - Add `--force-reinstall` to pip arguments when `--force` was passed diff --git a/tests/test_run.py b/tests/test_run.py index 98ad312718..064c785e8c 100644 --- a/tests/test_run.py +++ b/tests/test_run.py @@ -340,4 +340,4 @@ def test_run_with_windows_python_version(caplog, pipx_temp_env, tmp_path): def test_run_shared_lib_as_app(pipx_temp_env, monkeypatch, capfd): run_pipx_cli_exit(["run", "pip", "--help"]) captured = capfd.readouterr() - assert "pip [options]\n" in captured.out + assert "pip [options]" in captured.out