env set property 추가 #223
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: Unit Test (Windows) | |
| on: [push, pull_request] | |
| jobs: | |
| unit_test: | |
| name: Windows Test - Python ${{ matrix.python-version }} | |
| runs-on: windows-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| python-version: ['3.8', '3.9', '3.10', '3.11', '3.12', '3.13'] | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Display Python version | |
| run: python --version | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install --upgrade pytest "pytest-cov<5.0" "coverage<8.0" | |
| pip install -r requirements.txt | |
| - name: Run pytest tests (unittest skipped due to BLE compatibility issues on Windows) | |
| run: | | |
| echo "Note: unittest skipped on Windows due to bleak-winrt compatibility with Python 3.12+" | |
| python -m pytest tests/task/ tests/module/input_module/ tests/module/output_module/ -v |