Author: Matti Picus <matti.pi...@gmail.com>
Branch: 
Changeset: r93969:c462956c2800
Date: 2018-03-11 22:18 +0200
http://bitbucket.org/pypy/pypy/changeset/c462956c2800/

Log:    skip unicode file name on non-win32

diff --git a/pypy/module/posix/test/test_posix2.py 
b/pypy/module/posix/test/test_posix2.py
--- a/pypy/module/posix/test/test_posix2.py
+++ b/pypy/module/posix/test/test_posix2.py
@@ -1179,6 +1179,7 @@
             if len(e.value.args) > 2:
                 assert e.value.args[2] == "\\foo\\bar\\baz"
 
+    @py.test.mark.skipif("sys.platform != 'win32'")
     def test_rename(self):
         os = self.posix
         with open(self.path, "w") as f:
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to