Skip to content

Commit dacdbdc

Browse files
committed
Remove deprecated clean argument
1 parent e7361eb commit dacdbdc

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tools/test/export/build_test.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -167,10 +167,10 @@ def perform_exports(self, test_case):
167167
return
168168
profile = extract_profile(self.parser, self.options, toolchain)
169169
exporter = export(test_case.mcu, test_case.ide,
170-
project_id=test_case.id, zip_proj=None,
171-
clean=True, src=test_case.src,
172-
export_path=join(EXPORT_DIR,name_str),
173-
silent=True, build_profile=profile)
170+
project_id=test_case.id, zip_proj=None,
171+
src=test_case.src,
172+
export_path=join(EXPORT_DIR, name_str),
173+
silent=True, build_profile=profile)
174174
exporter.generated_files.append(join(EXPORT_DIR,name_str,test_case.log))
175175
self.build_queue.put((exporter,test_case))
176176
# Check if the specified name is in all_os_tests
@@ -295,4 +295,4 @@ def main():
295295
sys.exit(len(test.failures))
296296

297297
if __name__ == "__main__":
298-
main()
298+
main()

0 commit comments

Comments
 (0)