Skip to content

Fix Windows Compatibility: Symlink Handling, Permission Fixes, and Test Stability Improvements #1

Fix Windows Compatibility: Symlink Handling, Permission Fixes, and Test Stability Improvements

Fix Windows Compatibility: Symlink Handling, Permission Fixes, and Test Stability Improvements #1

Workflow file for this run

name: Windows - Smoke Tests
on:
push:
pull_request:
jobs:
windows-tests:
runs-on: windows-latest
timeout-minutes: 20
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
submodules: true
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt -r test-requirements.txt
- name: Run pytest (exclude e2e)
run: |
python -m pytest -k "not e2e" --maxfail=10 -q