Skip to content

Commit

Permalink
fix vcs ref null issue
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius authored and oz123 committed Oct 29, 2024
1 parent 4ad9924 commit 6011d4c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tests/integration/test_install_markers.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import sys

import pytest
from flaky import flaky
Expand Down Expand Up @@ -134,6 +135,9 @@ def test_global_overrides_environment_markers(pipenv_instance_private_pypi):
@flaky
@pytest.mark.markers
@pytest.mark.complex
@pytest.mark.skipif(
sys.version_info == (3, 8), reason="Test package that gets installed is different on 3.8"
)
def test_resolver_unique_markers(pipenv_instance_pypi):
"""Test that markers are properly cleaned and not duplicated when resolving
dependencies. Use vcrpy as an example package that pulls in dependencies
Expand Down

0 comments on commit 6011d4c

Please sign in to comment.