Skip to content

185 parameterize tests #372

185 parameterize tests

185 parameterize tests #372

Workflow file for this run

name: Pytest
on:
pull_request:
paths:
- "**.py"
- "requirements.txt"
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12.4"]
steps:
- uses: actions/checkout@v4
- 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
- name: Setup the Database
run: |
python db_init.py create
- name: Running pytest
run: |
python -m pytest tests/