Skip to content

Delete unneeded folders #30

Delete unneeded folders

Delete unneeded folders #30

Workflow file for this run

name: Unit Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ['3.10', '3.11', '3.12']
steps:
- name: Checkout repository
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 pytest pytest-mock numpy pillow opencv-python scipy
- name: Run tests
shell: bash
run: |
if [ "$RUNNER_OS" == "Windows" ]; then
pwsh -c 'Set-Item -Path Env:PYTHONPATH "."; pytest'
else
PYTHONPATH=. pytest
fi