Skip to content

Commit

Permalink
de-debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ladyada committed Oct 29, 2023
1 parent 4419b48 commit f1a3f8e
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions build_platform.py
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,6 @@ def test_examples_in_folder(folderpath):
global success
for example in sorted(os.listdir(folderpath)):
examplepath = folderpath+"/"+example
ColorPrint.print_info(folderpath, examplepath)
if os.path.isdir(examplepath):
test_examples_in_folder(examplepath)
continue
Expand Down Expand Up @@ -360,9 +359,6 @@ def test_examples_in_folder(folderpath):
out, err = proc.communicate()
r = 1

os.system("ls -lR "+BUILD_DIR+"/build")
os.system("ls -lR "+folderpath)

if r == 0 and not (err and BUILD_WALL == True):
ColorPrint.print_pass(CHECK)
if err:
Expand All @@ -378,7 +374,6 @@ def test_examples_in_folder(folderpath):
if filename is None:
success = 1 # failure
if IS_LEARNING_SYS:
ColorPrint.print_info(filename.split, filename.split("/"))
fqbnpath, uf2file = filename.split("/")[-2:]
os.makedirs(BUILD_DIR+"/build", exist_ok=True)
os.makedirs(BUILD_DIR+"/build/"+fqbnpath, exist_ok=True)
Expand Down

0 comments on commit f1a3f8e

Please sign in to comment.