-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add prerelease, cuda, macos, windows test workflows (#134)
- Adds CUDA, macOS, and Windows test workflows that run on schedule, manually, or by adding appropriate labels to a PR - Separates prerelease tests into its own workflow that runs on schedule
- Loading branch information
1 parent
6cf394e
commit 886ca4f
Showing
7 changed files
with
338 additions
and
22 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,66 @@ | ||
name: Test (Linux, CUDA) | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
types: [labeled, synchronize, opened] | ||
schedule: | ||
- cron: "0 10 * * *" # runs at 10:00 UTC (03:00 PST) every day | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
# if PR has label "cuda tests" or "all tests" or if scheduled or manually triggered | ||
if: >- | ||
( | ||
contains(github.event.pull_request.labels.*.name, 'cuda tests') || | ||
contains(github.event.pull_request.labels.*.name, 'all tests') || | ||
contains(github.event_name, 'schedule') || | ||
contains(github.event_name, 'workflow_dispatch') | ||
) | ||
runs-on: [self-hosted, Linux, X64, CUDA] | ||
defaults: | ||
run: | ||
shell: bash -e {0} # -e to fail on error | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python: ["3.11"] | ||
cuda: ["11"] | ||
|
||
container: | ||
image: scverse/scvi-tools:py${{ matrix.python }}-cu${{ matrix.cuda }}-base | ||
options: --user root --gpus all | ||
|
||
name: Integration (CUDA) | ||
|
||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install ".[dev,test]" | ||
- name: Test | ||
env: | ||
MPLBACKEND: agg | ||
PLATFORM: ${{ matrix.os }} | ||
DISPLAY: :42 | ||
run: | | ||
coverage run -m pytest -v --color=yes | ||
- name: Report coverage | ||
run: | | ||
coverage report | ||
- name: Upload coverage | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
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,72 @@ | ||
name: Test (Linux, prereleases) | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
types: [labeled, synchronize, opened] | ||
schedule: | ||
- cron: "0 10 * * *" # runs at 10:00 UTC (03:00 PST) every day | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
# if PR has label "cuda tests" or "all tests" or if scheduled or manually triggered | ||
if: >- | ||
( | ||
contains(github.event.pull_request.labels.*.name, 'prerelease tests') || | ||
contains(github.event.pull_request.labels.*.name, 'all tests') || | ||
contains(github.event_name, 'schedule') || | ||
contains(github.event_name, 'workflow_dispatch') | ||
) | ||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
shell: bash -e {0} # -e to fail on error | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [ubuntu-latest] | ||
python: ["3.9", "3.10", "3.11", "3.12"] | ||
|
||
name: Integration (Prereleases) | ||
|
||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
cache: "pip" | ||
cache-dependency-path: "**/pyproject.toml" | ||
|
||
- name: Install test dependencies | ||
run: | | ||
python -m pip install --upgrade pip wheel | ||
- name: Install dependencies | ||
run: | | ||
pip install --pre ".[dev,test]" | ||
- name: Test | ||
env: | ||
MPLBACKEND: agg | ||
PLATFORM: ${{ matrix.os }} | ||
DISPLAY: :42 | ||
run: | | ||
coverage run -m pytest -v --color=yes | ||
- name: Report coverage | ||
run: | | ||
coverage report | ||
- name: Upload coverage | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
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,61 @@ | ||
name: Test (MacOS) | ||
|
||
on: | ||
schedule: | ||
- cron: "0 10 * * *" # runs at 10:00 UTC -> 03:00 PST every day | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
shell: bash -e {0} # -e to fail on error | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-latest] | ||
python: ["3.9", "3.10", "3.11"] | ||
|
||
name: Integration | ||
|
||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
cache: "pip" | ||
cache-dependency-path: "**/pyproject.toml" | ||
|
||
- name: Install test dependencies | ||
run: | | ||
python -m pip install --upgrade pip wheel | ||
- name: Install dependencies | ||
run: | | ||
pip install ".[dev,test]" | ||
- name: Test | ||
env: | ||
MPLBACKEND: agg | ||
PLATFORM: ${{ matrix.os }} | ||
DISPLAY: :42 | ||
run: | | ||
coverage run -m pytest -v --color=yes | ||
- name: Report coverage | ||
run: | | ||
coverage report | ||
- name: Upload coverage | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
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,61 @@ | ||
name: Test (MacOS M1) | ||
|
||
on: | ||
schedule: | ||
- cron: "0 10 * * *" # runs at 10:00 UTC -> 03:00 PST every day | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
defaults: | ||
run: | ||
shell: bash -e {0} # -e to fail on error | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [macos-14] | ||
python: ["3.9", "3.10", "3.11"] | ||
|
||
name: Integration | ||
|
||
env: | ||
OS: ${{ matrix.os }} | ||
PYTHON: ${{ matrix.python }} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Python ${{ matrix.python }} | ||
uses: actions/setup-python@v5 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
cache: "pip" | ||
cache-dependency-path: "**/pyproject.toml" | ||
|
||
- name: Install test dependencies | ||
run: | | ||
python -m pip install --upgrade pip wheel | ||
- name: Install dependencies | ||
run: | | ||
pip install ".[dev,test]" | ||
- name: Test | ||
env: | ||
MPLBACKEND: agg | ||
PLATFORM: ${{ matrix.os }} | ||
DISPLAY: :42 | ||
run: | | ||
coverage run -m pytest -v --color=yes | ||
- name: Report coverage | ||
run: | | ||
coverage report | ||
- name: Upload coverage | ||
uses: codecov/codecov-action@v4 | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} |
Oops, something went wrong.