diff --git a/.github/workflows/full_test.yml b/.github/workflows/full_test.yml index c82a92d2..561fd805 100644 --- a/.github/workflows/full_test.yml +++ b/.github/workflows/full_test.yml @@ -35,11 +35,11 @@ jobs: - name: Install modelskill run: | pip install .[test] - - name: Static type check - run: make typecheck - name: Test with pytest run: | pytest --cov=modelskill --ignore tests/notebooks/ + - name: Static type check + run: make typecheck - name: Test docstrings with pytest run: | pytest ./modelskill/metrics.py --doctest-modules diff --git a/pyproject.toml b/pyproject.toml index 5f0853f5..250f1b24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ dependencies = [ "mikeio >= 1.2", "matplotlib", "xarray", + "netCDF4", "scipy", "jinja2", ] @@ -52,7 +53,6 @@ dev = ["pytest", test = [ "pytest", "pytest-cov", - "netCDF4", "openpyxl", "dask", "mypy",