diff options
author | Simon Glass <sjg@chromium.org> | 2022-07-11 19:04:03 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-08-05 11:47:56 -0400 |
commit | c52bd22539f3bb009f73cc1608b155813f7e48a0 (patch) | |
tree | 6ca2c6f4e736db8fd8bedabf329efc9c15c4d56a /tools/buildman/test.py | |
parent | 6014db68d39cd2b0760c50093b6529d7ebf9afe8 (diff) |
buildman: Split out Boards into its own file
Use a separate file for the Boards class so that its name matches the
module name.
Fix up the function names to match the pylint style and fix some other
warnings.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'tools/buildman/test.py')
-rw-r--r-- | tools/buildman/test.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/buildman/test.py b/tools/buildman/test.py index d7306fb4df..daf5467503 100644 --- a/tools/buildman/test.py +++ b/tools/buildman/test.py @@ -10,6 +10,7 @@ import time import unittest from buildman import board +from buildman import boards from buildman import bsettings from buildman import builder from buildman import cfgutil @@ -131,7 +132,7 @@ class TestBuild(unittest.TestCase): self.commits.append(comm) # Set up boards to build - self.brds = board.Boards() + self.brds = boards.Boards() for brd in BOARDS: self.brds.add_board(board.Board(*brd)) self.brds.select_boards([]) |