Skip to content

replayer web fpdb WIP #147

replayer web fpdb WIP

replayer web fpdb WIP #147

Workflow file for this run

name: Fpdb3
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.9"]
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 dependencies
run: |
python -m pip install --upgrade pip
pip install ruff pytest
pip install -r ./requirements.txt
- name: Test with pytest
run: |
pip install pytest pytest-cov
pytest ./test_pot.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
pytest ./test_swc.py --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html