Avoid RecursionError when using Model.set methods inside Model.read methods #1093
Workflow file for this run
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: [main] | |
paths: | |
- tests/* | |
- hydromt/* | |
- data/* | |
- pyproject.toml | |
pull_request: | |
branches: [main] | |
paths: | |
- tests/* | |
- hydromt/* | |
- data/* | |
- pyproject.toml | |
jobs: | |
Test-matrix: | |
name: ${{ matrix.os }} - py${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 10 | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
python-version: ['3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Generate env spec | |
run: pip install tomli && python make_env.py test | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
miniforge-variant: Mambaforge | |
channels: conda-forge, defaults | |
channel-priority: strict | |
environment-file: environment.yml | |
activate-environment: hydromt | |
- name: Test | |
run: python -m pytest --verbose --cov=hydromt --cov-report xml | |
- uses: codecov/codecov-action@v3 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true |