diff --git a/tests/integration/test_install_markers.py b/tests/integration/test_install_markers.py index 42401c15..ee83179b 100644 --- a/tests/integration/test_install_markers.py +++ b/tests/integration/test_install_markers.py @@ -149,7 +149,8 @@ def test_resolver_unique_markers(PipenvInstance, pypi): assert 'yarl' in p.lockfile['default'] yarl = p.lockfile['default']['yarl'] assert 'markers' in yarl - assert yarl['markers'] == "python_version in '3.4, 3.5, 3.6'" + # Two possible marker sets are ok here + assert yarl['markers'] in ["python_version in '3.4, 3.5, 3.6'", "python_version >= '3.4.1'"] @pytest.mark.project