From e93d1341fb02507506c9633c242c599d1e2f1dfc Mon Sep 17 00:00:00 2001 From: Paulo Matos Date: Wed, 7 Oct 2020 16:00:29 +0200 Subject: [PATCH] Redirect future test logs to file We seemed to have forgotten to redirect future tests output to a file. This is relevant because it's how the workflow checks for runtime errors. --- .github/workflows/ci-ubsan.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-ubsan.yml b/.github/workflows/ci-ubsan.yml index 57c55e2a10..84cc8040a3 100644 --- a/.github/workflows/ci-ubsan.yml +++ b/.github/workflows/ci-ubsan.yml @@ -76,7 +76,7 @@ jobs: run: raco test -c tests/xml | tee logs/xml.log - name: Run tests/future continue-on-error: true - run: raco test -c tests/future + run: raco test -c tests/future | tee logs/future.log - name: Run tests/stxparse continue-on-error: true run: raco test -c tests/stxparse | tee logs/stxparse.log @@ -162,7 +162,7 @@ jobs: run: raco test -c tests/xml | tee logs/xml.log - name: Run tests/future continue-on-error: true - run: raco test -c tests/future + run: raco test -c tests/future | tee logs/future.log - name: Run tests/stxparse continue-on-error: true run: raco test -c tests/stxparse | tee logs/stxparse.log