Skip to content

Unit tests [Dafydd] #12

Unit tests [Dafydd]

Unit tests [Dafydd] #12

Workflow file for this run

name: unit_tests
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
setup:
strategy:
matrix:
python-version: ["3.12",]
uses: ./.github/workflows/environment_setup.yml
with:
python-version: ${{ matrix.python-version }}
test:
needs: setup
name: ${{ matrix.python-version }}-build
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12",]
steps:
- uses: actions/checkout@v4
- name: Running Tests
shell: micromamba-shell {0}
run: |
python -V
coverage run --rcfile=coverage.toml -m pytest -s --verbose cstar/tests/unit_tests/*
- name: Get coverage report
shell: micromamba-shell {0}
run: |
coverage report -m ; coverage xml
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml