Skip to content

Merge branch 'main' into dependabot/pip/urllib3-2.2.2 #406

Merge branch 'main' into dependabot/pip/urllib3-2.2.2

Merge branch 'main' into dependabot/pip/urllib3-2.2.2 #406

Workflow file for this run

name: Run Unit Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Install dependencies
run: |
poetry install
- name: Test with pytest
run: |
poetry run coverage run -m pytest -v -s
- name: Generate Coverage Report
run: |
poetry run coverage report -m