1919jobs :
2020 unittests :
2121 env :
22- RUN_TEST : pytest -v splot --cov splot --cov-config .coveragerc --cov-report xml --color yes --cov-append --cov-report term-missing
22+ RUN_TEST : pytest splot -v -r a --cov splot --cov-config .coveragerc --cov-report xml --color yes --cov-append --cov-report term-missing
2323 name : ${{ matrix.os }}, ${{ matrix.environment-file }}
2424 runs-on : ${{ matrix.os }}
2525 timeout-minutes : 30
@@ -31,11 +31,13 @@ jobs:
3131 - ci/39.yaml
3232 - ci/310.yaml
3333 - ci/310-DEV.yaml
34+ - ci/310-DEV_shapely_dev.yaml
3435 include :
3536 - environment-file : ci/310.yaml
3637 os : macos-latest
3738 - environment-file : ci/310.yaml
3839 os : windows-latest
40+ fail-fast : false
3941
4042 steps :
4143 - name : checkout repo
@@ -45,15 +47,16 @@ jobs:
4547 uses : mamba-org/provision-with-micromamba@main
4648 with :
4749 environment-file : ${{ matrix.environment-file }}
48- micromamba-version : " latest"
50+ micromamba-version : ' latest'
51+ channel-priority : ' flexible'
4952
5053 - name : install bleeding edge PySAL submodules (only Ubuntu / Python 3.10)
5154 shell : bash -l {0}
5255 run : |
5356 pip install git+https://github.com/pysal/libpysal.git@master
54- pip install git+https://github.com/pysal/mapclassify.git@master
57+ pip install git+https://github.com/pysal/mapclassify.git@main
5558 pip install git+https://github.com/pysal/esda.git@master
56- pip install git+https://github.com/pysal/spreg.git@master
59+ pip install git+https://github.com/pysal/spreg.git@main
5760 pip install git+https://github.com/pysal/giddy.git@master
5861 if : matrix.os == 'ubuntu-latest' && contains(matrix.environment-file, 'DEV')
5962
7174 shell : bash -l {0}
7275 run : cp utils/matplotlibrc .
7376
77+ - name : environment info
78+ shell : bash -l {0}
79+ run : |
80+ micromamba info
81+ micromamba list
82+
83+ - name : spatial versions
84+ shell : bash -l {0}
85+ run : ' python -c "import geopandas; geopandas.show_versions();"'
86+
7487 - name : run tests - bash
7588 shell : bash -l {0}
7689 run : ${{ env.RUN_TEST }}
0 commit comments