Merge pull request #242 from pnuu/remove-unittest-testcase #635
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: CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| fail-fast: true | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| python-version: ["3.11", "3.12", "3.13"] | |
| experimental: [false] | |
| include: | |
| - python-version: "3.13" | |
| os: "ubuntu-latest" | |
| experimental: true | |
| env: | |
| PYTHON_VERSION: ${{ matrix.python-version }} | |
| OS: ${{ matrix.os }} | |
| UNSTABLE: ${{ matrix.experimental }} | |
| ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@v5 | |
| - name: Setup Conda Environment | |
| uses: conda-incubator/setup-miniconda@v3 | |
| with: | |
| miniforge-version: latest | |
| python-version: ${{ matrix.python-version }} | |
| environment-file: continuous_integration/environment.yaml | |
| activate-environment: test-environment | |
| mamba-version: "*" | |
| channels: conda-forge | |
| - name: Install unstable dependencies | |
| if: matrix.experimental == true | |
| shell: bash -l {0} | |
| run: | | |
| python -m pip install \ | |
| --no-deps --upgrade \ | |
| --index-url https://pypi.anaconda.org/scipy-wheels-nightly/simple/ \ | |
| --trusted-host pypi.anaconda.org \ | |
| --no-deps --pre --upgrade \ | |
| numpy; \ | |
| python -m pip install \ | |
| --no-deps --upgrade \ | |
| git+https://github.com/yaml/pyyaml \ | |
| git+https://github.com/dpath-maintainers/dpath-python \ | |
| git+https://github.com/pytroll/trollsift \ | |
| git+https://github.com/pytroll/pyresample \ | |
| git+https://github.com/pytroll/satpy \ | |
| git+https://github.com/pytroll/posttroll \ | |
| git+https://github.com/pytroll/pyorbital | |
| - name: Install trollflow2 | |
| shell: bash -l {0} | |
| run: | | |
| pip install --no-deps -e . | |
| - name: Run unit tests | |
| shell: bash -l {0} | |
| run: | | |
| pytest --cov=trollflow2 trollflow2/tests --cov-report=xml | |
| - name: Upload unittest coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| flags: unittests | |
| file: ./coverage.xml | |
| env_vars: OS,PYTHON_VERSION,UNSTABLE |