Skip to content

Commit 52acf47

Browse files
committed
skip test on PyPy
1 parent 3097e9c commit 52acf47

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tests/test_virtualenv.py

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44
import shutil
55
import sys
66
import tempfile
7+
import pytest
8+
import platform # noqa
9+
710
from mock import patch, Mock
811

912

@@ -123,6 +126,7 @@ def test_install_python_bin():
123126
shutil.rmtree(tmp_virtualenv)
124127

125128

129+
@pytest.mark.skipif("platform.python_implementation() == 'PyPy'")
126130
def test_always_copy_option():
127131
"""Should be no symlinks in directory tree"""
128132
tmp_virtualenv = tempfile.mkdtemp()

0 commit comments

Comments
 (0)