Smoke Tests #97
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Smoke Tests | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| # Run at 05:00 UTC every day | |
| - cron: '0 5 * * *' | |
| permissions: | |
| contents: read | |
| env: | |
| PYTHON_VERSION: 3.13 | |
| jobs: | |
| smoke-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - name: Install uv and set the python version | |
| uses: astral-sh/setup-uv@37802adc94f370d6bfd71619e3f0bf239e1f3b78 # v7 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Set up cache | |
| uses: actions/cache@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 | |
| with: | |
| path: .venv | |
| key: venv-${{ hashFiles('pyproject.toml') }}-${{ hashFiles('uv.lock') }} | |
| - run: uv sync --all-extras | |
| - name: Run smoke tests | |
| env: | |
| CDF_CLUSTER: ${{ vars.CDF_CLUSTER }} | |
| CDF_PROJECT: ${{ vars.CDF_PROJECT }} | |
| IDP_CLIENT_ID: ${{ vars.IDP_CLIENT_ID }} | |
| IDP_CLIENT_SECRET: ${{ secrets.IDP_CLIENT_SECRET }} | |
| IDP_TOKEN_URL: ${{ vars.IDP_TOKEN_URL }} | |
| run: export PYTHONPATH=$PYTHONPATH:$(pwd); uv run pytest tests_smoke --json-report --json-report-file=smoke-report.json --tb=short | |
| continue-on-error: true | |
| - name: Check smoke test results and send Slack notification | |
| env: | |
| SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | |
| GITHUB_REPO_URL: ${{ github.server_url }}/${{ github.repository }} | |
| run: uv run python tests_smoke/check_smoke_results.py smoke-report.json |