JP-3673: Update background-subtraction intermediate products for WFSS #18
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: 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@28e947497bed4d6ec3fa1d66d198e95a1d17bc63 # v2.2.1 | |
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 | |
- macos: py311-xdist | |
pytest-results-summary: true | |
- macos: py312-xdist | |
pytest-results-summary: true | |
# TODO: Merge stdevdeps into devdeps | |
- linux: py3-stdevdeps-xdist | |
pytest-results-summary: true | |
- macos: py3-stdevdeps-xdist | |
pytest-results-summary: true | |
- linux: py3-devdeps-xdist | |
pytest-results-summary: true | |
- macos: py3-devdeps-xdist | |
pytest-results-summary: true |