Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

reorganize tests, make devdeps testing optional, and unpin latest Python testing #213

Merged
merged 18 commits into from
Dec 11, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 16 additions & 21 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
name: CI
name: tests
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved

on:
push:
branches:
- main
- '*x'
- master
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved
- '*.x'
tags:
- '*'
pull_request:
branches:
- main
schedule:
# Weekly Monday 9AM build
- cron: "0 9 * * 1"
# * is a special character in YAML so you have to quote this string
- cron: '0 9 * * 1'
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand All @@ -30,25 +29,21 @@ jobs:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
envs: |
- linux: test-oldestdeps-cov-xdist
python-version: 3.9
- linux: test-xdist
python-version: '3.9'
- linux: test-xdist
python-version: '3.10'
- linux: test-xdist
python-version: '3.11'
- macos: test-xdist
python-version: '3.11'
- linux: test-cov-xdist
coverage: 'codecov'
- linux: py39-oldestdeps-cov-xdist
- linux: py39-xdist
- linux: py310-xdist
- linux: py311-xdist
- macos: py311-xdist
- linux: py3-xdist-cov
coverage: codecov
test_downstream:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@main
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
setenv: |
CRDS_PATH: /tmp/crds_cache
CRDS_CLIENT_RETRY_COUNT: 3
CRDS_CLIENT_RETRY_DELAY_SECONDS: 20
envs: |
- linux: test-jwst-cov-xdist
- linux: test-romancal-cov-xdist
- linux: py3-jwst-cov-xdist
- linux: py3-romancal-cov-xdist

19 changes: 13 additions & 6 deletions .github/workflows/ci_cron.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,25 @@
name: Weekly cron
name: scheduled tests
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved

on:
schedule:
# Weekly Monday 6AM build
- cron: "0 0 * * 1"
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
if: (github.repository == 'spacetelescope/stdatamodels' && (github.event_name == 'schedule' || github.event_name == 'push' || github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'run scheduled tests')))
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
envs: |
- macos: test-xdist
python-version: 3.9
- macos: test-xdist
python-version: 3.10
- linux: test-devdeps-xdist
- macos: py39-xdist
- windows: py39-xdist
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved
- macos: py310-xdist
- windows: py310-xdist
- windows: py311-xdist
- windows: py3-xdist
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved

38 changes: 38 additions & 0 deletions .github/workflows/tests_devdeps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: tests with development versions
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved

on:
push:
branches:
- master
zacharyburnett marked this conversation as resolved.
Show resolved Hide resolved
- '*.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/stdatamodels' && (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: py3-devdeps-xdist
test_downstream:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
setenv: |
CRDS_PATH: /tmp/crds_cache
CRDS_CLIENT_RETRY_COUNT: 3
CRDS_CLIENT_RETRY_DELAY_SECONDS: 20
envs: |
- linux: py3-jwst-devdeps-xdist
- linux: py3-romancal-devdeps-xdist