From: Yegor Yefremov Date: Thu, 13 Feb 2020 10:09:05 +0000 (+0100) Subject: support/run-tests: reorder imports X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5abe7e4ce3e098ddb7a060e24f2f8aa60b0353a7;p=buildroot.git support/run-tests: reorder imports Reorder imports using the isort utility to fix a warning from pylint3: wrong-import-order: standard import "import multiprocessing" should be placed before "import nose2" Signed-off-by: Yegor Yefremov Signed-off-by: Peter Korsgaard --- diff --git a/support/testing/run-tests b/support/testing/run-tests index f295c053ff..022209b414 100755 --- a/support/testing/run-tests +++ b/support/testing/run-tests @@ -1,9 +1,10 @@ #!/usr/bin/env python3 import argparse -import sys +import multiprocessing import os +import sys + import nose2 -import multiprocessing from infra.basetest import BRConfigTest