From e2e67caabdff6a9db29d5861a241dc279f14ac11 Mon Sep 17 00:00:00 2001 From: Matt Davis Date: Thu, 28 Jul 2022 22:01:08 -0400 Subject: [PATCH] Remove another dead test. --- news/5165.removal.rst | 1 + tests/integration/test_install_twists.py | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) create mode 100644 news/5165.removal.rst diff --git a/news/5165.removal.rst b/news/5165.removal.rst new file mode 100644 index 00000000..08760a2d --- /dev/null +++ b/news/5165.removal.rst @@ -0,0 +1 @@ +Remove tests that have been for a while been marked skipped and are no longer relevant. diff --git a/tests/integration/test_install_twists.py b/tests/integration/test_install_twists.py index a0c5d70a..c7abbf8d 100644 --- a/tests/integration/test_install_twists.py +++ b/tests/integration/test_install_twists.py @@ -115,21 +115,6 @@ setup( ) -@pytest.mark.e -@pytest.mark.local -@pytest.mark.install -def test_e_dot(PipenvInstance, pip_src_dir): - with PipenvInstance() as p: - path = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) - c = p.pipenv(f"install -e '{path}' --dev") - - assert c.returncode == 0 - - key = [k for k in p.pipfile["dev-packages"].keys()][0] - assert "path" in p.pipfile["dev-packages"][key] - assert "requests" in p.lockfile["develop"] - - @pytest.mark.install @pytest.mark.multiprocessing @flaky