Speed up regtests by reorganizing test_nirspec_ifu_spec3 #9652
Workflow file for this run
This file contains 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: test | |
on: | |
push: | |
branches: | |
- master | |
- '*x' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
schedule: | |
# Weekly Monday 9AM build | |
- cron: "0 9 * * 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: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- uses: pre-commit/[email protected] | |
check: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
with: | |
default_python: "3.12" | |
envs: | | |
- linux: check-dependencies | |
latest_crds_contexts: | |
uses: spacetelescope/crds/.github/workflows/contexts.yml@master | |
crds_context: | |
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: | |
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | |
needs: [ crds_context ] | |
with: | |
setenv: | | |
CRDS_PATH: /tmp/data/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/data/crds_cache | |
cache-key: crds-${{ needs.crds_context.outputs.context }} | |
envs: | | |
- linux: py310-oldestdeps-xdist-cov | |
pytest-results-summary: true | |
- linux: py310-xdist | |
- linux: py311-xdist | |
pytest-results-summary: true | |
- macos: py311-xdist | |
pytest-results-summary: true | |
- linux: py311-xdist-cov | |
coverage: codecov | |
pytest-results-summary: true | |
- linux: py312-xdist |