Skip to content

Dev 2024 10 17

Dev 2024 10 17 #21

Workflow file for this run

name: Unittest Windows
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
unittest:
name: Test Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
defaults:
run:
shell: bash -el {0}
if: github.event.pull_request.draft == false
steps:
- uses: actions/checkout@v4
- name: Install PMM and dependencies
run: |
python3 -m pip install requests
python3 -m pip install requests
python3 -m pip install aiohttp
python3 -m pip install nest_asyncio
pip3 install .
- name: Run tests
run: |
cd ./unittest
python3 -m unittest -vv --buffer