Fix Windows Compatibility: Symlink Handling, Permission Fixes, and Test Stability Improvements #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |