diff options
Diffstat (limited to 'test/runner/lib/sanity/yamllint.py')
-rw-r--r-- | test/runner/lib/sanity/yamllint.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/runner/lib/sanity/yamllint.py b/test/runner/lib/sanity/yamllint.py index d82175dd88..ff495c26df 100644 --- a/test/runner/lib/sanity/yamllint.py +++ b/test/runner/lib/sanity/yamllint.py @@ -16,6 +16,7 @@ from lib.util import ( SubprocessError, run_command, display, + INSTALL_ROOT, ) from lib.config import ( @@ -71,7 +72,7 @@ class YamllintTest(SanitySingleVersion): """ cmd = [ args.python_executable, - 'test/sanity/yamllint/yamllinter.py', + os.path.join(INSTALL_ROOT, 'test/sanity/yamllint/yamllinter.py'), ] data = '\n'.join(paths) |