File tree Expand file tree Collapse file tree 1 file changed +20
-2
lines changed
Expand file tree Collapse file tree 1 file changed +20
-2
lines changed Original file line number Diff line number Diff line change 88 description : Whether to get per-test coverage (uses ./github/workflows/codecov_per_test_coverage.yml)
99 required : true
1010 default : ' true'
11- # Run once a week on sunday
11+ # Run once a day
1212 schedule :
13- - cron : ' 0 1 * * 0 '
13+ - cron : ' 0 1 * * * '
1414
1515concurrency :
1616 group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
5656 - name : Run backend test (${{ steps.setup.outputs.matrix-instance-number }} of ${{ steps.setup.outputs.matrix-instance-total }})
5757 run : |
5858 make test-python-ci
59+
60+ - name : Inspect failure
61+ if : failure()
62+ run : |
63+ if command -v devservices; then
64+ devservices logs
65+ fi
66+
67+ - name : Collect test data
68+ uses : ./.github/actions/collect-test-data
69+ if : ${{ !cancelled() }}
70+ with :
71+ artifact_path : .artifacts/pytest.json
72+ gcs_bucket : ${{ secrets.COLLECT_TEST_DATA_GCS_BUCKET }}
73+ gcp_project_id : ${{ secrets.COLLECT_TEST_DATA_GCP_PROJECT_ID }}
74+ workload_identity_provider : ${{ secrets.SENTRY_GCP_DEV_WORKLOAD_IDENTITY_POOL }}
75+ service_account_email : ${{ secrets.COLLECT_TEST_DATA_SERVICE_ACCOUNT_EMAIL }}
76+ matrix_instance_number : ${{ steps.setup.outputs.matrix-instance-number }}
You can’t perform that action at this time.
0 commit comments