Skip to content

Update main.rst

Update main.rst #205

name: Test pyrad mch dev
env:
MINIMAL_DEPENDENCIES: Cython numpy cartopy
TEST_DEPENDENCIES: pytest pygrib imageio gdal==3.5.3
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
jobs:
unit_tests:
name: Unit Tests (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ "ubuntu-latest"]
python-version: [ "3.9", "3.10", "3.11"]
max-parallel: 6
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v2
with:
ref : dev
- name: Clone pyrad-tests
uses: actions/checkout@main
with:
repository: MeteoSwiss/pyrad-tests
path: pyrad-tests
- name: Clone pyart
uses: actions/checkout@main
with:
repository: MeteoSwiss/pyart
path: pyart
ref: dev
- name: Setup Miniconda
uses: conda-incubator/[email protected]
with:
auto-update-conda: true
python-version: ${{ matrix.python-version }}
channels: conda-forge
channel-priority: flexible
activate-environment: test-environment
- name: Install dependencies
env:
PACKAGES: ${{env.MINIMAL_DEPENDENCIES}} ${{env.OPTIONAL_DEPENDENCIES}} ${{env.TEST_DEPENDENCIES}}
PYRAD_TESTS_PATH: ${{github.workspace}}/pyrad-tests/
run: |
conda install -c conda-forge ${{env.PACKAGES}}
pip install wradlib
- name: Install pyart
if: matrix.os != 'macos-latest'
working-directory: ${{github.workspace}}/pyart/
run: python -m pip install .
- name: Install pyrad
if: matrix.os != 'macos-latest'
working-directory: ${{github.workspace}}/src/pyrad_proc/
run: python -m pip install .
- name: Install DX50 lib
working-directory: ${{github.workspace}}/src/libDX50/
run: make
- name: Check imports
working-directory: ${{github.workspace}}/pyrad-tests/
run: |
python -c "import pyrad; print(pyrad.__file__)"
python -c "from pyrad.flow import main"
# Insert tmate session here
- name: Run tests
env:
PYRAD_TESTS_PATH: ${{github.workspace}}/pyrad-tests/
PSRLIB_PATH: ${{github.workspace}}/src/libDX50/lib/
PYART_CONFIG: ${{github.workspace}}/config/pyart/mch_config.py
working-directory: ${{github.workspace}}/pyrad-tests//
run: pytest "run_tests.py::test_mch"
- name: tmate session if tests fail
if: ${{ github.event_name == 'workflow_dispatch' && failure() }}
uses: mxschmitt/action-tmate@v3