Skip to content

T-17808/fix: Add unit tests for extraction functions #35

T-17808/fix: Add unit tests for extraction functions

T-17808/fix: Add unit tests for extraction functions #35

Workflow file for this run

name: Run test
on:
workflow_dispatch:
push:
jobs:
pytest:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Determine which namespace to deploy to
shell: bash
run: |
python3 -m venv venv
source venv/bin/activate
pip install '.[dev]'
coverage -m pytest && coverage report -m --fail-under=96