Commit e7ff9bb5 authored by Stefan Behnel's avatar Stefan Behnel

Disable "unicode_imports" test in Py2 because it's too fiddly to get working...

Disable "unicode_imports" test in Py2 because it's too fiddly to get working on Windows/appveyor, also because Py2 distutils requires module names to be byte strings.
parent 09e128be
......@@ -416,6 +416,7 @@ VER_DEP_MODULES = {
(2,999): (operator.lt, lambda x: x in ['run.special_methods_T561_py3',
'run.test_raisefrom',
'run.different_package_names',
'run.unicode_imports', # encoding problems on appveyor in Py2
]),
(3,): (operator.ge, lambda x: x in ['run.non_future_division',
'compile.extsetslice',
......
......@@ -27,16 +27,6 @@ exit(val)
from __future__ import unicode_literals
import sys
# enable Unicode console output, if possible
if sys.platform == "win32" and sys.version_info < (3, 6):
try:
import win_unicode_console
except ImportError:
pass
else:
win_unicode_console.enable()
from Cython.Build import cythonize
files = ["mymoð.pyx", "from_cy.pyx"]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment