From fe529c140ba6b28e0002578ccb9ea1cd4cf16d89 Mon Sep 17 00:00:00 2001 From: Tzu-ping Chung Date: Tue, 2 Jun 2020 19:45:54 +0800 Subject: [PATCH] This should not fail anymore --- tests/functional/test_install_direct_url.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/functional/test_install_direct_url.py b/tests/functional/test_install_direct_url.py index 4afd3925e..ec1e927eb 100644 --- a/tests/functional/test_install_direct_url.py +++ b/tests/functional/test_install_direct_url.py @@ -1,7 +1,5 @@ import re -import pytest - from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl from tests.lib import _create_test_package, path_to_url @@ -32,7 +30,6 @@ def test_install_vcs_editable_no_direct_url(script, with_wheel): assert not _get_created_direct_url(result, "testpkg") -@pytest.mark.fails_on_new_resolver def test_install_vcs_non_editable_direct_url(script, with_wheel): pkg_path = _create_test_package(script, name="testpkg") url = path_to_url(pkg_path)