projects
/
buildroot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7868fa7
)
support/run-tests: reorder imports
author
Yegor Yefremov
<yegorslists@googlemail.com>
Thu, 13 Feb 2020 10:09:05 +0000
(11:09 +0100)
committer
Peter Korsgaard
<peter@korsgaard.com>
Mon, 17 Feb 2020 09:13:08 +0000
(10:13 +0100)
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 <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
support/testing/run-tests
patch
|
blob
|
history
diff --git
a/support/testing/run-tests
b/support/testing/run-tests
index f295c053ff51bb07b2c59a2d77cc985f3eb4ae32..022209b414afd6ad11ab57c4c5f547929c51c00e 100755
(executable)
--- 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