Remove another dead test.

This commit is contained in:
Matt Davis
2022-07-28 22:01:08 -04:00
committed by Oz N Tiram
parent 771cee564a
commit e2e67caabd
2 changed files with 1 additions and 15 deletions
+1
View File
@@ -0,0 +1 @@
Remove tests that have been for a while been marked skipped and are no longer relevant.
-15
View File
@@ -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