-
Notifications
You must be signed in to change notification settings - Fork 107
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate unit and integration tests from TravisCI to GitHub Actions (#580
) Co-authored-by: Jessica Scheick <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
- Loading branch information
1 parent
a52bc37
commit bd09d73
Showing
5 changed files
with
124 additions
and
50 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: 'Install icepyx' | ||
description: 'Install icepyx and dev dependencies' | ||
|
||
inputs: | ||
python-version: | ||
required: true | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- uses: "actions/setup-python@v5" | ||
with: | ||
python-version: "${{ inputs.python-version }}" | ||
|
||
- name: "Install package and test dependencies" | ||
shell: "bash" | ||
run: | | ||
python -m pip install . | ||
python -m pip install -r requirements-dev.txt |
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,53 @@ | ||
name: "Integration test" | ||
# NOTE: We're just running the tests that require earthdata login here; we | ||
# don't distinguish between unit and integration tests yet. | ||
|
||
on: | ||
push: | ||
branches: | ||
- "main" # Releases | ||
- "development" # PR merges | ||
pull_request: | ||
branches: | ||
- "main" # Release pull requests | ||
pull_request_review: | ||
types: | ||
- "submitted" | ||
paths: | ||
- ".github/**" | ||
- "icepyx/**/*.py" | ||
- "pyproject.toml" | ||
- "requirements*.txt" | ||
|
||
|
||
jobs: | ||
test: | ||
name: "Integration test" | ||
# Job is conditional: | ||
# - Do not run on PRs from forks | ||
# - Do not run on `pull_request_review` events unless the PR is approved. | ||
if: "${{ !github.event.pull_request.head.repo.fork && (github.event.action != 'pull_request_review' || github.event.review.state == 'approved') }}" | ||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- uses: "actions/checkout@v4" | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: "./.github/actions/install-icepyx" | ||
with: | ||
python-version: "3.12" | ||
|
||
- name: "Run tests" | ||
env: | ||
EARTHDATA_PASSWORD: "${{ secrets.EARTHDATA_PASSWORD }}" | ||
NSIDC_LOGIN: "${{ secrets.EARTHDATA_PASSWORD }}" | ||
run: | | ||
pytest icepyx/ --verbose --cov app \ | ||
icepyx/tests/test_behind_NSIDC_API_login.py \ | ||
icepyx/tests/test_auth.py | ||
- name: "Upload coverage report" | ||
uses: "codecov/[email protected]" | ||
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,40 @@ | ||
name: "Unit test" | ||
# NOTE: We're just skipping the tests requiring earthdata login here; we don't | ||
# distinguish yet between unit and integration tests. | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- "main" | ||
- "development" | ||
|
||
|
||
jobs: | ||
test: | ||
name: "Unit test (Python ${{ matrix.python-version }})" | ||
runs-on: "ubuntu-latest" | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
python-version: ["3.9", "3.12"] #NOTE: min and max Python versions supported by icepyx | ||
|
||
steps: | ||
- uses: "actions/checkout@v4" | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: "./.github/actions/install-icepyx" | ||
with: | ||
python-version: "${{ matrix.python-version }}" | ||
|
||
- name: "Run tests" | ||
run: | | ||
pytest icepyx/ --verbose --cov app \ | ||
--ignore=icepyx/tests/test_behind_NSIDC_API_login.py \ | ||
--ignore=icepyx/tests/test_auth.py | ||
- name: "Upload coverage report" | ||
uses: "codecov/[email protected]" | ||
with: | ||
token: "${{ secrets.CODECOV_TOKEN }}" |
This file was deleted.
Oops, something went wrong.
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