TST: make testing more stable (#249) #265
This file contains 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: | |
- "*" | |
pull_request: | |
branches: | |
- "*" | |
schedule: | |
- cron: "59 23 * * 3" | |
jobs: | |
unittests: | |
name: ${{ matrix.os }}, ${{ matrix.environment-file }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 30 | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
environment-file: | |
- ci/envs/39-minimal.yaml | |
- ci/envs/310-conda-forge.yaml | |
- ci/envs/311-conda-forge.yaml | |
- ci/envs/312-latest-conda-forge.yaml | |
include: | |
- os: macos-13 | |
environment-file: ci/envs/312-latest-conda-forge.yaml | |
- os: macos-latest # apple silicon | |
environment-file: ci/envs/312-latest-conda-forge.yaml | |
- os: windows-latest | |
environment-file: ci/envs/312-latest-conda-forge.yaml | |
defaults: | |
run: | |
shell: bash -l {0} | |
steps: | |
- name: checkout repo | |
uses: actions/checkout@v4 | |
- name: setup micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: ${{ matrix.environment-file }} | |
micromamba-version: "latest" | |
- name: Install contextily | |
run: pip install . | |
- name: run tests | |
run: pytest -v . --cov=contextily --cov-append --cov-report term-missing --cov-report xml --color=yes | |
- uses: codecov/codecov-action@v4 |