From 2b8bb0d68eff1293050f10fec26cef38b4dfd282 Mon Sep 17 00:00:00 2001 From: Adam Hupp Date: Fri, 15 Jan 2021 13:49:55 -0800 Subject: skip magic_descriptor tests in centos 7 --- test/run.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'test/run.py') diff --git a/test/run.py b/test/run.py index c4b8d0a..cf62eee 100644 --- a/test/run.py +++ b/test/run.py @@ -4,10 +4,11 @@ import sys this_dir = os.path.dirname(sys.argv[0]) -new_env = { +new_env = dict(os.environ) +new_env.update({ 'LC_ALL': 'en_US.UTF-8', 'PYTHONPATH': os.path.join(this_dir, ".."), -} +}) def has_py(version): -- cgit v1.2.1