diff options
author | René Meusel <[email protected]> | 2021-12-16 11:00:02 +0100 |
---|---|---|
committer | René Meusel <[email protected]> | 2021-12-16 11:00:02 +0100 |
commit | c0e88407117915168d3b535a777bcb8b35b20d06 (patch) | |
tree | ba474b8d68fe411aaaa360e2d6e4757728cbd5f6 | |
parent | af77a42f9c04cfcc65e3b624452a412fce6d1119 (diff) |
appease pylint
Co-Authored-By: Hannes Rantzsch <[email protected]>
-rwxr-xr-x | src/scripts/ci_build.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scripts/ci_build.py b/src/scripts/ci_build.py index 416ca79c8..700203471 100755 --- a/src/scripts/ci_build.py +++ b/src/scripts/ci_build.py @@ -188,7 +188,8 @@ def determine_flags(target, target_os, target_cpu, target_cc, cc_bin, if target == 'emscripten': flags += ['--cpu=wasm'] - test_cmd = None # TODO: find a way to run the wasm-compiled tests w/o a browser + # need to find a way to run the wasm-compiled tests w/o a browser + test_cmd = None if is_cross_target: if target_os == 'ios': |