push -rm wall

This commit is contained in:
brentru 2022-06-03 13:46:16 -04:00
parent 75b90b487d
commit 2faadaebbb

View file

@ -430,9 +430,9 @@ def test_examples_in_folder(folderpath):
if BUILD_WARN:
if os.path.exists(gen_file_name):
cmd = ['arduino-cli', 'compile', '--warnings', 'all', '--fqbn', fqbn, '-e', folderpath]
cmd = ['arduino-cli', 'compile', '--warnings', 'none', '--fqbn', fqbn, '-e', folderpath]
else:
cmd = ['arduino-cli', 'compile', '--warnings', 'all', '--fqbn', fqbn, folderpath]
cmd = ['arduino-cli', 'compile', '--warnings', 'none', '--fqbn', fqbn, folderpath]
else:
cmd = ['arduino-cli', 'compile', '--warnings', 'none', '--export-binaries', '--fqbn', fqbn, folderpath]
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,