File: appveyor.yml

package info (click to toggle)
python-rioxarray 0.20.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,308 kB
  • sloc: python: 7,958; makefile: 90
file content (31 lines) | stat: -rw-r--r-- 1,177 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#-------------------------------------------------------------------------------
#System specifications for Appveyor
#-------------------------------------------------------------------------------

environment:
  matrix:
    - PYTHON_VERSION: "3.12"
      MINICONDA: "C:\\Miniconda3-x64"

install:
  - 'SET PATH=%MINICONDA%;%MINICONDA%\\Scripts;%PATH%'
  - conda config --set always_yes yes
  - conda config --prepend channels conda-forge
  - conda config --set channel_priority strict

#-----------------------------------------------------------------------------
# Create conda environment
#-----------------------------------------------------------------------------
  - conda create -n test python=%PYTHON_VERSION% rasterio scipy xarray netcdf4 dask libgdal-netcdf libgdal-hdf4 libgdal-hdf5
  - activate test

#-------------------------------------------------------------------------------
# Install rioxarray
#-------------------------------------------------------------------------------
  - python -m pip install -e .[all]
  - python -m pip install -r requirements/test.txt

build: false

test_script:
  - python -m pytest --cov-report term-missing --cov=rioxarray