test/test_targets: Remove build directory before build.

This commit is contained in:
Florent Kermarrec 2021-09-09 11:36:18 +02:00
parent 8d91489756
commit 3622661fa8
1 changed files with 2 additions and 0 deletions

View File

@ -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 \