Skip to content

Commit

Permalink
start testing min required dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mathause committed Feb 16, 2024
1 parent 3a6a9e1 commit 35746ee
Show file tree
Hide file tree
Showing 3 changed files with 101 additions and 1 deletion.
75 changes: 75 additions & 0 deletions .github/workflows/ci-additional.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
name: mesmer CI-CD
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:

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

jobs:
test:
name: py${{ matrix.python-version }}-${{ matrix.env }}
runs-on: "ubuntu-latest"
defaults:
run:
shell: bash -l {0}
strategy:
fail-fast: false
matrix:
include:
- env: "min-all-deps"
python-version: "3.9"

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Set environment variables
run: |
PY=${{ matrix.python-version }}
# replace "." in matrix.python-version
PY=${PY//./}
echo "CONDA_ENV_FILE=ci/requirements/py${PY}-${{ matrix.env }}.yml" >> $GITHUB_ENV
- name: Create conda environment
uses: mamba-org/setup-micromamba@v1
with:
environment-name: mesmer-tests
cache-downloads: true
cache-downloads-key: "${{runner.os}}-${{runner.arch}}-py${{matrix.python-version}}"
micromamba-version: 'latest'
environment-file: ${{ env.CONDA_ENV_FILE }}
create-args: >-
python=${{ matrix.python-version }}
- name: Install mesmer
run: |
python -m pip install --no-deps -e .
- name: Conda info
run: |
conda info -a
- name: Conda list
run: conda list

- name: Run tests
run: python -u -m pytest
-r a -v
--all
--cov=mesmer
--cov-report=xml

- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
flags: unittests
env_vars: RUNNER_OS,PYTHON_VERSION
name: codecov-umbrella
fail_ci_if_error: false
26 changes: 26 additions & 0 deletions ci/requirements/py39-min-all-deps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: mesmer-tests

channels:
- conda-forge
- nodefaults

dependencies:
- python=3.9
- cartopy
- dask[complete]
- gdal
- netcdf4
- numpy
- packaging
- pandas==2.0
- pooch
- regionmask==0.8
- scikit-learn
- statsmodels
- xarray==2023.04
# for testing
- black!=23
- flake8
- isort
- pytest
- pytest-cov
1 change: 0 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ dependencies:
- pooch
- regionmask>=0.8
- scikit-learn
- sphinx
- statsmodels
- xarray>=2023.04 # because pandas 2 is required
# for testing
Expand Down

0 comments on commit 35746ee

Please sign in to comment.