1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00

skip specific unicode test on win/py3

This commit is contained in:
Marcus Smith 2013-01-27 22:18:46 -08:00
parent 6961e33fd4
commit 0353788661

View file

@ -1,4 +1,6 @@
import os
import sys
from nose import SkipTest
from tests.test_pip import here, reset_env, run_pip
@ -18,6 +20,10 @@ def test_install_package_that_emits_unicode():
Refs https://github.com/pypa/pip/issues/326
"""
#skip on win/py3 for now, see issue #782
if sys.platform == 'win32' and sys.version_info >= (3,):
raise SkipTest()
env = reset_env()
to_install = os.path.abspath(os.path.join(here, 'packages', 'BrokenEmitsUTF8'))
result = run_pip('install', to_install, expect_error=True, expect_temp=True, quiet=True)