aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools/tests/test_easy_install.py
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2015-12-01 12:41:58 -0500
committerJason R. Coombs <jaraco@jaraco.com>2015-12-01 12:41:58 -0500
commitefededd6aa8be5ab054037ee32680a772d06a3c5 (patch)
tree13832b34ada498d9845550dc8b36328aec606d30 /setuptools/tests/test_easy_install.py
parent81c103f75d22580b14f162103232632444c9ec6f (diff)
downloadexternal_python_setuptools-efededd6aa8be5ab054037ee32680a772d06a3c5.tar.gz
external_python_setuptools-efededd6aa8be5ab054037ee32680a772d06a3c5.tar.bz2
external_python_setuptools-efededd6aa8be5ab054037ee32680a772d06a3c5.zip
Expect failures on these tests due to ASCII
Diffstat (limited to 'setuptools/tests/test_easy_install.py')
-rw-r--r--setuptools/tests/test_easy_install.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/setuptools/tests/test_easy_install.py b/setuptools/tests/test_easy_install.py
index fa510098..00e16b63 100644
--- a/setuptools/tests/test_easy_install.py
+++ b/setuptools/tests/test_easy_install.py
@@ -35,7 +35,7 @@ import setuptools.tests.server
import pkg_resources
from .py26compat import tarfile_open
-from . import contexts
+from . import contexts, is_ascii
from .textwrap import DALS
@@ -430,8 +430,6 @@ class TestScriptHeader:
expected = '#!"%s"\n' % self.exe_with_spaces
assert actual == expected
- c_type = os.environ.get("LC_CTYPE", os.environ.get("LC_ALL"))
- is_ascii = c_type in ("C", "POSIX")
@pytest.mark.xfail(
compat.PY3 and is_ascii,
reason="Test fails in this locale on Python 3"