-
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.
Merge pull request #611 from icesat2py/development
release v1.3.0
- Loading branch information
Showing
69 changed files
with
8,102 additions
and
6,463 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
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,13 @@ | ||
# Keep GitHub Actions up to date with GitHub's Dependabot... | ||
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/keeping-your-actions-up-to-date-with-dependabot | ||
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#package-ecosystem | ||
version: 2 | ||
updates: | ||
- package-ecosystem: github-actions | ||
directory: / | ||
groups: | ||
github-actions: | ||
patterns: | ||
- "*" # Group all Actions updates into a single larger pull request | ||
schedule: | ||
interval: monthly |
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,49 @@ | ||
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" # Feature PR merges | ||
pull_request: | ||
branches: | ||
- "main" # Release PRs | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: "The ref to test" | ||
type: "string" | ||
|
||
|
||
jobs: | ||
test: | ||
name: "Integration test" | ||
# Do not run on PRs from forks: | ||
if: "${{ !github.event.pull_request.head.repo.fork }}" | ||
runs-on: "ubuntu-latest" | ||
|
||
steps: | ||
- uses: "actions/checkout@v4" | ||
with: | ||
fetch-depth: 0 | ||
ref: "${{ inputs.ref }}" | ||
|
||
- 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
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,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 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 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
Oops, something went wrong.