We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99682d0 commit 494afe6Copy full SHA for 494afe6
.github/workflows/e2e_tests.yaml
@@ -68,6 +68,11 @@ jobs:
68
with:
69
go-version: v1.18
70
71
+ - name: Set up gotestfmt
72
+ uses: gotesttools/gotestfmt-action@v2
73
+ with:
74
+ token: ${{ secrets.GITHUB_TOKEN }}
75
+
76
- name: Container image registry
77
run: |
78
podman run -d -p 5000:5000 --name registry registry:2.8.1
@@ -172,7 +177,8 @@ jobs:
172
177
export CODEFLARE_TEST_OUTPUT_DIR=${{ env.TEMP_DIR }}
173
178
echo "CODEFLARE_TEST_OUTPUT_DIR=${CODEFLARE_TEST_OUTPUT_DIR}" >> $GITHUB_ENV
174
179
175
- make test-e2e
180
+ set -euo pipefail
181
+ go test -timeout 30m -v ./test/e2e -json 2>&1 | tee ${CODEFLARE_TEST_OUTPUT_DIR}/gotest.log | gotestfmt
176
182
183
- name: Print CodeFlare operator logs
184
if: always() && steps.deploy.outcome == 'success'
0 commit comments