scrub / .github /workflows /tests.yml
solidprivacy-nl
SCRUB-WP fix DOCX preview text order (#8)
cb9f70c unverified
Raw
History Blame Contribute Delete
713 Bytes
name: Tests
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
python-tests:
name: Python regression tests
runs-on: ubuntu-latest
env:
PYTHONPATH: ${{ github.workspace }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install test dependencies
run: |
python -m pip install --upgrade pip
python -m pip install pytest presidio-analyzer click==8.1.8 python-docx pymupdf reportlab pypdf
- name: Run regression tests
run: |
python -m pytest -q tests