diff --git a/tests/installation/fixtures/with-conditional-dependency.test b/tests/installation/fixtures/with-conditional-dependency.test index 090bee4025e..0c8c9c2b5a9 100644 --- a/tests/installation/fixtures/with-conditional-dependency.test +++ b/tests/installation/fixtures/with-conditional-dependency.test @@ -6,20 +6,6 @@ optional = false python-versions = ">=3.5" files = [] -[package.requirements] -python = ">=3.5,<4.0" - -[[package]] -name = "A" -version = "1.0.1" -description = "" -optional = false -python-versions = ">=3.6" -files = [] - -[package.requirements] -python = ">=3.6,<4.0" - [metadata] python-versions = "~2.7 || ^3.4" lock-version = "2.0" diff --git a/tests/installation/test_installer.py b/tests/installation/test_installer.py index 681e882b19c..8776482aa4d 100644 --- a/tests/installation/test_installer.py +++ b/tests/installation/test_installer.py @@ -1791,9 +1791,6 @@ def test_run_install_duplicate_dependencies_different_constraints_with_lock_upda assert installer.executor.removals_count == 0 -@pytest.mark.skip( - "This is not working at the moment due to limitations in the resolver" -) def test_installer_test_solver_finds_compatible_package_for_dependency_python_not_fully_compatible_with_package_python( installer: Installer, locker: Locker,