Skip to content

Commit 20eba58

Browse files
capture test output
1 parent 3a52204 commit 20eba58

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
run: TEST_START=`date +%s` >> $GITHUB_ENV
8080

8181
- name: Run the tests
82-
run: bin/test | tee "${ARTIFACTS_DIR}/test.out"
82+
run: bin/test
8383

8484
- name: Collect additional artifacts
8585
if: ${{ always() }}

bin/test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
#!/bin/bash -e
22

33
docker compose up --detach --no-build
4-
docker compose exec app rspec --format html > "${RUNNER_TEMP}/test-results.html"
4+
docker compose exec app rspec --format html | tee "${RUNNER_TEMP}/test-results.html" 2>&1

0 commit comments

Comments
 (0)