-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
reorganize tests, make devdeps testing optional, and unpin latest Pyt…
…hon testing (#213) * separate devdeps into optional workflow * update names * fix branch name * fix comment * fix job filter * fix repo name * cache WebbPSF data for Romancal testing * remove hyphens * remove Windows builds * remove WebbPSF data caching * add more test runs to devdeps --------- Co-authored-by: Howard Bushouse <[email protected]>
- Loading branch information
1 parent
b179285
commit d71cb6d
Showing
3 changed files
with
52 additions
and
12 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: test with development versions | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
- '*x' | ||
tags: | ||
- '*' | ||
pull_request: | ||
schedule: | ||
# Weekly Monday 9AM build | ||
# * is a special character in YAML so you have to quote this string | ||
- cron: '0 9 * * 1' | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
if: (github.repository == 'spacetelescope/stcal' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run devdeps tests'))) | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | ||
with: | ||
envs: | | ||
- linux: py39-devdeps-xdist | ||
- linux: py310-devdeps-xdist | ||
- linux: py311-devdeps-xdist | ||
- linux: py3-devdeps-xdist | ||
test_downstream: | ||
if: (github.repository == 'spacetelescope/stcal' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run devdeps tests'))) | ||
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1 | ||
with: | ||
setenv: | | ||
CRDS_PATH: /tmp/data/crds_cache | ||
CRDS_CLIENT_RETRY_COUNT: 3 | ||
CRDS_CLIENT_RETRY_DELAY_SECONDS: 20 | ||
envs: | | ||
- linux: py3-jwst-devdeps-xdist | ||
- linux: py3-romancal-devdeps-xdist | ||