Skip to content

Create __init__.py.txt #34

Create __init__.py.txt

Create __init__.py.txt #34

Workflow file for this run

name: Tests
on:
push:
branches:
- main
jobs:
tests:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: "3.11"
- name: Install poetry
run: python -m pip install poetry
- name: Install pytest
run: pip install pytest pytest-cov
- name: Install dependencies
run: pip install -e .
- name: Run Tests
run: poetry run pytest
- name: Run Coverage
run: |
poetry run coverage run -m pytest
poetry run coverage report