From 3b705efc93fdf6553c05d139dfb49fe6a5aa6483 Mon Sep 17 00:00:00 2001 From: Matt Clay Date: Fri, 16 Nov 2018 22:09:17 -0800 Subject: [PATCH] Fix ansible-test skip warning message. --- test/runner/lib/executor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/runner/lib/executor.py b/test/runner/lib/executor.py index 9b028a741af..4cc794a0f10 100644 --- a/test/runner/lib/executor.py +++ b/test/runner/lib/executor.py @@ -1641,7 +1641,7 @@ def get_integration_remote_filter(args, targets): if skipped: exclude.append(skip) display.warning('Excluding tests marked "%s" which are not supported on %s: %s' - % (skip.rstrip('/'), platform, ', '.join(skipped))) + % (skip.rstrip('/'), args.remote.replace('/', ' '), ', '.join(skipped))) python_version = 2 # remotes are expected to default to python 2