Skip to content

Commit

Permalink
skipif requires reason string
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius committed Aug 6, 2023
1 parent d5c96a7 commit dd4e228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/integration/test_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ def test_pipenv_venv(pipenv_instance_pypi):


@pytest.mark.cli
@pytest.mark.skipif(sys.version_info == (3, 8) and os.name == "nt", reason="Python 3.8 on Windows is not supported")
@pytest.mark.skipif(sys.version_info[:2] == (3, 8) and os.name == "nt", reason="Python 3.8 on Windows is not supported")
def test_pipenv_py(pipenv_instance_pypi):
with pipenv_instance_pypi() as p:
c = p.pipenv('--python python')
Expand Down

0 comments on commit dd4e228

Please sign in to comment.