Skip to content

Update to PPT 2.0.5 - fixes slack notifications (#457) #8

Update to PPT 2.0.5 - fixes slack notifications (#457)

Update to PPT 2.0.5 - fixes slack notifications (#457) #8

# This workflow will install Python dependencies and run tests in a Windows environment.
# This is intended to catch any file-system specific issues, and so runs less
# frequently than other test suites.
name: Windows unit test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
strategy:
matrix:
python-version: ['3.10']
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e .[dev]
pip install -r requirements.txt
- name: Run unit tests with pytest
run: |
python -m pytest tests