Skip to content

Modified some docstrings | Removed global variables used only once in… #10

Modified some docstrings | Removed global variables used only once in…

Modified some docstrings | Removed global variables used only once in… #10

Workflow file for this run

name: Coveragepy
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
pip install coverage
- name: Running coverage report with coveragepy
run: |
coverage run -m pytest tst
coverage report