test/test_targets: Remove build directory before build.
This commit is contained in:
parent
8d91489756
commit
3622661fa8
|
@ -27,6 +27,7 @@ class TestTargets(unittest.TestCase):
|
|||
# Test platforms with simple design.
|
||||
for name in platforms:
|
||||
with self.subTest(platform=name):
|
||||
os.system("rm -rf build")
|
||||
cmd = """\
|
||||
python3 -m litex_boards.targets.simple litex_boards.platforms.{} \
|
||||
--no-compile-software \
|
||||
|
@ -48,6 +49,7 @@ python3 -m litex_boards.targets.simple litex_boards.platforms.{} \
|
|||
# Test targets.
|
||||
for name in targets:
|
||||
with self.subTest(target=name):
|
||||
os.system("rm -rf build")
|
||||
cmd = """\
|
||||
python3 -m litex_boards.targets.{} \
|
||||
--no-compile-software \
|
||||
|
|
Loading…
Reference in New Issue