Skip to content

Commit

Permalink
Fix tests for python 37
Browse files Browse the repository at this point in the history
Signed-off-by: Dan Ryan <dan@danryan.co>
  • Loading branch information
techalchemy committed Jun 27, 2018
1 parent ce4973f commit 7fdabb8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/integration/test_install_markers.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@


py3_only = pytest.mark.skipif(sys.version_info < (3, 0), reason="requires Python3")
skip_py37 = pytest.mark.skipif(sys.version_info >= (3, 7), reason="Skip for python 3.7")


@pytest.mark.markers
Expand Down Expand Up @@ -127,6 +128,7 @@ def test_global_overrides_environment_markers(PipenvInstance, pypi):
@pytest.mark.complex
@flaky
@py3_only
@skip_py37
def test_resolver_unique_markers(PipenvInstance, pypi):
"""vcrpy has a dependency on `yarl` which comes with a marker
of 'python version in "3.4, 3.5, 3.6" - this marker duplicates itself:
Expand Down

0 comments on commit 7fdabb8

Please sign in to comment.