T-17808/fix: Add unit tests for extraction functions #35
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: 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 |