BUG: value_counts on geoseries doesn't preserve CRS (#3669) #7139
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests | |
| on: | |
| push: | |
| branches: [main, 0.**] | |
| pull_request: | |
| branches: [main, 0.**] | |
| schedule: | |
| - cron: "0 0 * * *" | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| Test: | |
| name: ${{ matrix.os }}, ${{ matrix.env }} | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| # skip scheduled runs on forks | |
| if: (github.event_name == 'schedule' && github.repository == 'geopandas/geopandas') || (github.event_name != 'schedule') | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest] | |
| postgis: [false] | |
| dev: [false] | |
| env: | |
| - ci/envs/310-minimal.yaml | |
| - ci/envs/310-no-optional-deps.yaml | |
| - ci/envs/310-pd21.yaml | |
| - ci/envs/310-latest-no-pyogrio.yaml | |
| - ci/envs/311-pd22.yaml | |
| - ci/envs/311-latest.yaml | |
| - ci/envs/312-latest.yaml | |
| - ci/envs/312-latest-no-pyproj.yaml | |
| - ci/envs/313-latest.yaml | |
| - ci/envs/314-latest.yaml | |
| include: | |
| - env: ci/envs/310-latest-no-pyogrio.yaml | |
| os: macos-latest | |
| postgis: false | |
| dev: false | |
| - env: ci/envs/311-latest.yaml | |
| os: macos-latest | |
| postgis: false | |
| dev: false | |
| - env: ci/envs/310-latest-no-pyogrio.yaml | |
| os: windows-latest | |
| postgis: false | |
| dev: false | |
| - env: ci/envs/311-latest.yaml | |
| os: windows-latest | |
| postgis: false | |
| dev: false | |
| - env: ci/envs/312-dev.yaml | |
| os: ubuntu-latest | |
| dev: true | |
| pandas_future_infer_string: "1" | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install Conda environment with Micromamba | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| environment-file: ${{ matrix.env }} | |
| - name: Check and Log Environment | |
| run: | | |
| python -V | |
| python -c "import geopandas; geopandas.show_versions();" | |
| micromamba info | |
| micromamba list | |
| - name: Install package | |
| run: pip install -e . | |
| - name: Test | |
| env: | |
| PANDAS_FUTURE_INFER_STRING: ${{ matrix.pandas_future_infer_string || '0' }} | |
| run: | | |
| pytest -v -r a -n auto --color=yes --cov=geopandas --cov-append --cov-report term-missing --cov-report xml geopandas/ | |
| - name: Test with PostGIS | |
| if: (contains(matrix.env, '311-pd22.yaml') || contains(matrix.env, '312-latest.yaml')) | |
| && contains(matrix.os, 'ubuntu') | |
| env: | |
| PGUSER: postgres | |
| PGPASSWORD: postgres | |
| PGHOST: "127.0.0.1" | |
| PGPORT: 5432 | |
| run: | | |
| conda install postgis -c conda-forge | |
| sh ci/scripts/setup_postgres.sh | |
| set -o pipefail | |
| pytest -v -r a --color=yes --cov=geopandas --cov-append --cov-report term-missing --cov-report xml geopandas/io/tests/test_sql.py | tee /dev/stderr | if grep SKIPPED >/dev/null;then echo "TESTS SKIPPED, FAILING" && exit 1;fi | |
| - name: Test docstrings | |
| if: contains(matrix.env, '313-latest.yaml') && contains(matrix.os, 'ubuntu') | |
| run: | | |
| pytest -v --color=yes --doctest-only geopandas --ignore=geopandas/datasets | |
| - uses: codecov/codecov-action@v5 |