Skip to content

Commit

Permalink
tests: restore windows skip
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Feb 23, 2024
1 parent fffdfc4 commit 0a6779f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/test_virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,7 @@ def test_create_reuse_venv_environment(make_one):
assert reused


@pytest.mark.skipif(IS_WINDOWS, reason="Avoid 'No pyvenv.cfg file' error on Windows.")
def test_create_reuse_oldstyle_virtualenv_environment(make_one):
venv, location = make_one(reuse_existing=True)
venv.create()
Expand All @@ -491,6 +492,7 @@ def test_create_reuse_oldstyle_virtualenv_environment(make_one):
assert reused


@pytest.mark.skipif(IS_WINDOWS, reason="Avoid 'No pyvenv.cfg file' error on Windows.")
def test_inner_functions_reusing_venv(make_one):
venv, location = make_one(reuse_existing=True)
venv.create()
Expand Down

0 comments on commit 0a6779f

Please sign in to comment.