From 8879c4b23b69162f9879d029f9fe0e34111e29c9 Mon Sep 17 00:00:00 2001 From: Jan Richter Date: Wed, 15 Nov 2023 14:21:09 +0100 Subject: [PATCH] external_runner import error fix the external_runner uses the old import path for Runnable. This path has been changed when the legacy runner was removed. This commit fixes that to avoid ImportErrors. Reference: #5370 Signed-off-by: Jan Richter --- scripts/external_runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/external_runner.py b/scripts/external_runner.py index 50b8ca29fa..441966e22a 100755 --- a/scripts/external_runner.py +++ b/scripts/external_runner.py @@ -29,7 +29,7 @@ import sys from avocado.core.job import Job -from avocado.core.nrunner import Runnable +from avocado.core.nrunner.runnable import Runnable from avocado.core.suite import TestSuite from avocado.utils.path import find_command