Skip to content

Deprecate SkyCell object, replacing looped usages with SkyCells object #629

Deprecate SkyCell object, replacing looped usages with SkyCells object

Deprecate SkyCell object, replacing looped usages with SkyCells object #629

Workflow file for this run

name: tests
on:
push:
branches:
- main
- '*x'
tags:
- '*'
pull_request:
branches:
- main
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://roman-crds.stsci.edu
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.crds_context }}
cancel-in-progress: true
jobs:
check:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2
with:
envs: |
- linux: check-dependencies
python-version: '3.13'
latest_crds_contexts:
uses: ./.github/workflows/contexts.yml
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.roman) || needs.latest_crds_contexts.outputs.roman }} >> $GITHUB_OUTPUT
outputs:
context: ${{ steps.context.outputs.context }}
test:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v2
needs: [ crds_context ]
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
setenv: |
CRDS_PATH: /tmp/data/crds_cache/
CRDS_SERVER_URL: ${{ github.event_name == 'workflow_dispatch' && inputs.crds_server || 'https://roman-crds.stsci.edu' }}
CRDS_CONTEXT: ${{ needs.crds_context.outputs.context }}
CRDS_CLIENT_RETRY_COUNT: 3
CRDS_CLIENT_RETRY_DELAY_SECONDS: 20
DD_SERVICE: romancal
DD_ENV: ci
DD_GIT_REPOSITORY_URL: ${{ github.repositoryUrl }}
DD_GIT_COMMIT_SHA: ${{ github.sha }}
DD_GIT_BRANCH: ${{ github.ref_name }}
cache-path: /tmp/data/
cache-key: data-${{ needs.crds_context.outputs.context }}
envs: |
- linux: py311-oldestdeps-cov
- linux: py311-nolegacypath
- linux: py312-ddtrace
- linux: py313-cov
coverage: codecov
pytest-results-summary: true
- macos: py313-ddtrace
- macos: py313-pyargs
pytest-results-summary: true