diff options
author | Damien George <damien@micropython.org> | 2022-11-03 18:47:09 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2022-11-03 18:47:48 +1100 |
commit | 49ce93eeece0268b5ee10ca67c8f93dc19bbd24f (patch) | |
tree | 2129bab636fb83113737ec737c7a55dd181e3be2 /.github | |
parent | 329f8252b9c79655a92d0df06668560ce4684b5b (diff) | |
download | micropython-49ce93eeece0268b5ee10ca67c8f93dc19bbd24f.tar.gz micropython-49ce93eeece0268b5ee10ca67c8f93dc19bbd24f.zip |
github/workflows: Print test failures for webassembly workflow.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ports_webassembly.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/ports_webassembly.yml b/.github/workflows/ports_webassembly.yml index 861039c0fc..49c04c7d21 100644 --- a/.github/workflows/ports_webassembly.yml +++ b/.github/workflows/ports_webassembly.yml @@ -22,3 +22,6 @@ jobs: run: source tools/ci.sh && ci_webassembly_build - name: Run tests run: source tools/ci.sh && ci_webassembly_run_tests + - name: Print failures + if: failure() + run: tests/run-tests.py --print-failures |