added file not found warnings #846
Workflow file for this run
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
| # Access to Fortran extensions in DKRZ gitlab is managed via deploy tokens: https://docs.gitlab.com/user/project/deploy_tokens | |
| name: CI with extensions | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: py${{ matrix.python-version }} | |
| runs-on: ${{ matrix.os }} | |
| defaults: | |
| run: | |
| shell: bash -l {0} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| # Bookend python versions | |
| python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 # Fetch all history for all branches and tags. | |
| - name: Set environment variables | |
| run: | | |
| echo "CONDA_ENV_FILE=ci/requirements/environment.yml" >> $GITHUB_ENV | |
| echo "PYTHON_VERSION=${{ matrix.python-version }}" >> $GITHUB_ENV | |
| - name: Create conda environment | |
| uses: mamba-org/setup-micromamba@v2 | |
| with: | |
| cache-downloads: true | |
| cache-downloads-key: "${{runner.os}}-${{runner.arch}}-py${{matrix.python-version}}" | |
| environment-file: ci/requirements/environment.yml | |
| create-args: >- | |
| python=${{ matrix.python-version }} | |
| - name: Install pyremo | |
| run: | | |
| python -m pip install --no-deps -e . | |
| - name: Install private dependencies | |
| run: | | |
| python -m pip install -v git+https://${{secrets.DKRZ_PYINTORG_USERNAME}}:${{secrets.DKRZ_PYINTORG_PASSWORD}}@gitlab.dkrz.de/remo/pyintorg.git | |
| python -m pip install -v git+https://${{secrets.DKRZ_PYDRUINT_USERNAME}}:${{secrets.DKRZ_PYDRUINT_PASSWORD}}@gitlab.dkrz.de/remo/pydruint.git | |
| - name: Version info | |
| run: | | |
| conda info -a | |
| conda list | |
| - name: Import pyremo | |
| run: | | |
| python -c "import pyremo" | |
| - name: Run tests | |
| timeout-minutes: 5 | |
| run: python -u -m pytest | |
| --cov=pyremo | |
| --cov-report=xml | |
| --junitxml=test-results/${{ runner.os }}-${{ matrix.python-version }}.xml | |
| - name: Upload code coverage to Codecov | |
| uses: codecov/codecov-action@v5 | |
| with: | |
| file: ./coverage.xml | |
| flags: unittests | |
| env_vars: RUNNER_OS,PYTHON_VERSION | |
| name: codecov-umbrella | |
| fail_ci_if_error: false |