diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 3826db51..fce2550c 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -173,31 +173,24 @@ jobs: # conda-update: true # id: install - uses: actions/checkout@v3 - if: github.event_name == 'push' with: fetch-depth: "100" - name: Fetch unshallow - if: github.event_name == 'push' run: git fetch --prune --tags --unshallow -f - uses: actions/setup-node@v3 - if: github.event_name == 'push' with: node-version: 16.x - uses: actions/setup-python@v4 - if: github.event_name == 'push' with: python-version: "3.12" - name: install - if: github.event_name == 'push' run: | python -m pip install -ve '.[tests_core, tests_ci]' - name: download data - if: github.event_name == 'push' run: | # conda activate test-environment bash scripts/download_data.sh - name: doit test_unit - if: github.event_name == 'push' run: | # conda activate test-environment pytest geoviews diff --git a/pyproject.toml b/pyproject.toml index 26fe6174..897d689f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -85,4 +85,5 @@ filterwarnings = [ "ignore:The current Dask DataFrame implementation is deprecated:DeprecationWarning", # https://github.com/dask/dask/issues/10917 # 2024-03 "ignore:\\s*Dask dataframe query planning is disabled because dask-expr is not installed:FutureWarning", + "ignore:numpy.ndarray size changed, may indicate binary incompatibility:RuntimeWarning", # https://github.com/pydata/xarray/issues/7259 ] diff --git a/setup.py b/setup.py index ec5a70bc..f8f7e95b 100644 --- a/setup.py +++ b/setup.py @@ -159,6 +159,7 @@ def run(self): 'rioxarray', ], 'tests_ci': [ + 'pyct', 'pytest-cov', 'codecov', 'pytest-github-actions-annotate-failures',