From 4de4d20b744ee51363454dec3de6607603ea5987 Mon Sep 17 00:00:00 2001 From: Dave Schaefer Date: Sun, 8 Oct 2023 10:48:26 -0600 Subject: [PATCH] mark uninstall tests with `install` since the test calls `install` while running. as discussed in https://github.com/pypa/pipenv/pull/5965 --- tests/integration/test_uninstall.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/integration/test_uninstall.py b/tests/integration/test_uninstall.py index 57602906..f83e5ae9 100644 --- a/tests/integration/test_uninstall.py +++ b/tests/integration/test_uninstall.py @@ -245,6 +245,7 @@ def test_uninstall_multiple_categories(pipenv_instance_private_pypi): assert "six" not in p.lockfile["default"] +@pytest.mark.install @pytest.mark.uninstall def test_category_sorted_alphabetically_with_directive(pipenv_instance_private_pypi): with pipenv_instance_private_pypi() as p: @@ -270,6 +271,7 @@ atomicwrites = "*" assert list(p.pipfile["packages"].keys()) == ["atomicwrites", "colorama", "parse"] +@pytest.mark.install @pytest.mark.uninstall def test_category_not_sorted_without_directive(pipenv_instance_private_pypi): with pipenv_instance_private_pypi() as p: