From cf9999692a27bb68a6a2d8100e154c1929bbd02b Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Thu, 25 Jul 2019 22:51:26 -0700 Subject: Fix ansible-test encoding issues. This fixes `ansible-test sanity --list-tests` which was failing when `LC_ALL=C` was set. --- test/runner/lib/target.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/test/runner/lib/target.py b/test/runner/lib/target.py index dae07c2f1c..b8a3be8541 100644 --- a/test/runner/lib/target.py +++ b/test/runner/lib/target.py @@ -15,6 +15,7 @@ from lib.util import ( read_lines_without_comments, is_subdir, to_text, + to_bytes, ) from lib.data import ( @@ -257,7 +258,7 @@ def walk_test_targets(path=None, module_path=None, extensions=None, prefix=None, if prefix and not name.startswith(prefix): continue - if os.path.islink(file_path): + if os.path.islink(to_bytes(file_path)): # special case to allow a symlink of ansible_release.py -> ../release.py if file_path != 'lib/ansible/module_utils/ansible_release.py': continue @@ -272,7 +273,7 @@ def walk_test_targets(path=None, module_path=None, extensions=None, prefix=None, file_paths.append(file_path) for file_path in file_paths: - if os.path.islink(file_path): + if os.path.islink(to_bytes(file_path)): continue yield TestTarget(file_path, module_path, prefix, path) -- cgit v1.2.1