Skip to content

not using coverage or doctest yet #5

not using coverage or doctest yet

not using coverage or doctest yet #5

Workflow file for this run

on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# - name: pytest, Doctest & Coverage
# run: |
# pip install pytest pytest-cov
# pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
- name: pytest
run: |
pip install -r test/requirements.txt
pytest