jupyter: new incremental build to include SAlib
for sensitivity analysis and fstd2nc
to convert RPN files (from Environment Canada) to netCDF files
#447
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: Unit tests | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
test: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up python for testing | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.11" | |
cache: 'pip' | |
- name: Install python test dependencies | |
run: | | |
pip install -r ./tests/requirements.txt | |
- name: Test with pytest | |
run: | | |
pytest ./tests/ |