at master 1.4 kB view raw
1From 5879a4bbc34d1eb25e160b15b2f5a4f10eac6bd2 Mon Sep 17 00:00:00 2001 2From: toonn <toonn@toonn.io> 3Date: Mon, 13 Sep 2021 18:07:26 +0200 4Subject: [PATCH] =?UTF-8?q?tests:=20Rename=20a=CC=8Aa=CC=88o=CC=88=5F?= 5 =?UTF-8?q?=E6=97=A5=E6=9C=AC=E8=AA=9E.py=20=3D>=20=C3=A6=C9=90=C3=B8=5F?= 6 =?UTF-8?q?=E6=97=A5=E6=9C=AC=E5=83=B9.py?= 7MIME-Version: 1.0 8Content-Type: text/plain; charset=UTF-8 9Content-Transfer-Encoding: 8bit 10 11`åäö_日本語.py` normalizes differently in NFC and NFD normal forms. This 12means a hash generated for the source directory can differ depending on 13whether or not the filesystem is normalizing and which normal form it 14uses. 15 16By renaming the file to `æɐø_日本價.py` we avoid this issue by using a 17name that has the same encoding in each normal form. 18--- 19 tests/test_bdist_wheel.py | 2 +- 20 1 file changed, 1 insertion(+), 1 deletion(-) 21 22diff --git a/tests/test_bdist_wheel.py b/tests/test_bdist_wheel.py 23index 651c034..9b94ac8 100644 24--- a/tests/test_bdist_wheel.py 25+++ b/tests/test_bdist_wheel.py 26@@ -58,7 +58,7 @@ def test_unicode_record(wheel_paths): 27 with ZipFile(path) as zf: 28 record = zf.read('unicode.dist-0.1.dist-info/RECORD') 29 30- assert u'åäö_日本語.py'.encode('utf-8') in record 31+ assert u'æɐø_日本價.py'.encode('utf-8') in record 32 33 34 def test_licenses_default(dummy_dist, monkeypatch, tmpdir): 35-- 362.17.2 (Apple Git-113) 37