diff --git a/tests/integration/test_lock.py b/tests/integration/test_lock.py index c1a662c7..c3c8ae10 100644 --- a/tests/integration/test_lock.py +++ b/tests/integration/test_lock.py @@ -531,25 +531,6 @@ def test_lockfile_with_empty_dict(pipenv_instance_pypi): assert p.lockfile['_meta'] -@pytest.mark.skip(reason="Plette is more strict then pipfile ...") -@pytest.mark.lock -@pytest.mark.install -@pytest.mark.skip_lock -def test_lock_with_incomplete_source(pipenv_instance_private_pypi): - with pipenv_instance_private_pypi(chdir=True) as p: - with open(p.pipfile_path, 'w') as f: - f.write(""" -[[source]] -url = "{}" - -[packages] -six = "*" - """.format(p.index_url)) - c = p.pipenv('install') - assert c.returncode == 0 - assert p.lockfile['_meta']['sources'] - - @pytest.mark.lock @pytest.mark.install def test_lock_no_warnings(pipenv_instance_pypi, recwarn): @@ -559,7 +540,6 @@ def test_lock_no_warnings(pipenv_instance_pypi, recwarn): assert len(recwarn) == 0 - @pytest.mark.vcs @pytest.mark.lock def test_vcs_lock_respects_top_level_pins(pipenv_instance_private_pypi):