Misc: Remove pykdtree dependency, codecov config, SPEC 0 tooling and other changes #949
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: | |
push: | |
branches: | |
- "master" | |
- "test-me/*" | |
pull_request: | |
branches: | |
- "*" | |
schedule: | |
- cron: "0 7 * * 1" # Run every Monday at 7:00 UTC | |
defaults: | |
run: | |
shell: bash -el {0} | |
jobs: | |
unit-test: | |
name: Unittesting on ${{ matrix.os }} with python ${{ matrix.python-version }} | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos, ubuntu, windows] | |
python-version: ["3.12"] | |
include: | |
- os: ubuntu | |
python-version: "3.10" | |
- os: ubuntu | |
python-version: "3.11" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Conda and parcels | |
uses: ./.github/actions/install-parcels | |
with: | |
environment-file: environment.yml | |
python-version: ${{ matrix.python-version }} | |
- name: Unit test | |
run: | | |
coverage run -m pytest -v -s --html=${{ matrix.os }}_${{ matrix.python-version }}_unit_test_report.html --self-contained-html tests | |
coverage xml | |
- name: Codecov | |
uses: codecov/[email protected] | |
with: | |
flags: unit-tests | |
- name: Upload test results | |
if: ${{ always() }} # Always run this step, even if tests fail | |
uses: actions/[email protected] | |
with: | |
name: Unittest report | |
path: ${{ matrix.os }}_${{ matrix.python-version }}_unit_test_report.html |