Skip to content

Harmony integration #345

Harmony integration

Harmony integration #345

Workflow file for this run

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"
workflow_run:
workflows: [Update UML diagrams]
types:
- completed
jobs:
test:
name: "Unit test (Python ${{ matrix.python-version }})"
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "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"
env:
EARTHDATA_PASSWORD: "${{ secrets.EARTHDATA_PASSWORD }}"
EARTHDATA_USERNAME: ${{ secrets.EARTHDATA_USERNAME }}
NSIDC_LOGIN: "${{ secrets.EARTHDATA_PASSWORD }}" # remove this
run: |
pytest icepyx/unit --verbose --cov app
- name: "Upload coverage report"
uses: "codecov/[email protected]"
with:
token: "${{ secrets.CODECOV_TOKEN }}"