-wall add back

This commit is contained in:
brentru 2022-06-06 15:27:39 -04:00
parent 2faadaebbb
commit a526b48341

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', 'none', '--fqbn', fqbn, '-e', folderpath]
cmd = ['arduino-cli', 'compile', '--warnings', 'all', '--fqbn', fqbn, '-e', folderpath]
else:
cmd = ['arduino-cli', 'compile', '--warnings', 'none', '--fqbn', fqbn, folderpath]
cmd = ['arduino-cli', 'compile', '--warnings', 'all', '--fqbn', fqbn, folderpath]
else:
cmd = ['arduino-cli', 'compile', '--warnings', 'none', '--export-binaries', '--fqbn', fqbn, folderpath]
proc = subprocess.Popen(cmd, stdout=subprocess.PIPE,