extra tests #24
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: extra tests | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| - '*x' | |
| # We also want this workflow triggered if the 'run devdeps tests' label is added | |
| # or present when PR is updated | |
| types: | |
| - synchronize | |
| - labeled | |
| schedule: | |
| # Weekly Monday 6AM build | |
| - cron: "0 0 * * 1" | |
| workflow_dispatch: | |
| inputs: | |
| crds_context: | |
| description: CRDS context (leave blank for latest) | |
| type: string | |
| required: false | |
| default: '' | |
| crds_server: | |
| description: CRDS server | |
| type: string | |
| required: false | |
| default: https://jwst-crds.stsci.edu | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.crds_context }} | |
| cancel-in-progress: true | |
| jobs: | |
| latest_crds_contexts: | |
| if: (github.repository == 'spacetelescope/jwst' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run extra tests'))) | |
| uses: ./.github/workflows/contexts.yml | |
| crds_context: | |
| if: (github.repository == 'spacetelescope/jwst' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run extra tests'))) | |
| needs: [ latest_crds_contexts ] | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: context | |
| run: echo context=${{ github.event_name == 'workflow_dispatch' && (inputs.crds_context != '' && inputs.crds_context || needs.latest_crds_contexts.outputs.jwst) || needs.latest_crds_contexts.outputs.jwst }} >> $GITHUB_OUTPUT | |
| outputs: | |
| context: ${{ steps.context.outputs.context }} | |
| test: | |
| if: (github.repository == 'spacetelescope/jwst' && (github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run extra tests'))) | |
| uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@99401c364fa51c9c507d3cd6d272049278ac0b2c # v2.4.0 | |
| needs: [ crds_context ] | |
| with: | |
| setenv: | | |
| CRDS_PATH: /tmp/crds_cache | |
| CRDS_SERVER_URL: ${{ github.event_name == 'workflow_dispatch' && inputs.crds_server || 'https://jwst-crds.stsci.edu' }} | |
| CRDS_CONTEXT: ${{ needs.crds_context.outputs.context }} | |
| CRDS_CLIENT_RETRY_COUNT: 3 | |
| CRDS_CLIENT_RETRY_DELAY_SECONDS: 20 | |
| cache-path: /tmp/crds_cache | |
| cache-key: crds-${{ needs.crds_context.outputs.context }} | |
| artifact-path: | | |
| results.xml | |
| envs: | | |
| - linux: check-docs-links | |
| python-version: '3.13' | |
| - macos: py311-xdist | |
| pytest-results-summary: true | |
| - macos: py312-xdist | |
| pytest-results-summary: true | |
| - linux: py314-stdevdeps-xdist | |
| pytest-results-summary: true | |
| - macos: py313-stdevdeps-xdist | |
| pytest-results-summary: true | |
| - linux: py314-devdeps-xdist | |
| pytest-results-summary: true | |
| - macos: py313-devdeps-xdist | |
| pytest-results-summary: true |