Skip to content

Commit

Permalink
Skip test on windows 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius committed Aug 6, 2023
1 parent 920a90a commit bc3ce7e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/integration/test_cli.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import os
import re
import sys
from pathlib import Path
import pytest

Expand Down Expand Up @@ -28,6 +29,7 @@ def test_pipenv_venv(pipenv_instance_pypi):


@pytest.mark.cli
@pytest.mark.skipif(sys.version_info == (3, 8) and os.name == "nt")
def test_pipenv_py(pipenv_instance_pypi):
with pipenv_instance_pypi() as p:
c = p.pipenv('--python python')
Expand Down

0 comments on commit bc3ce7e

Please sign in to comment.