Skip to content

stubs: Update type: ignore comments for wx imports #54

stubs: Update type: ignore comments for wx imports

stubs: Update type: ignore comments for wx imports #54

Workflow file for this run

name: Use stubtest
on:
workflow_dispatch:
push:
branches:
- main
- master
paths:
- 'src/**'
- 'tests/**'
- '.github/workflows/typecheck_stubs.yml'
- 'requirements-tests.txt'
pull_request:
paths:
- 'src/**'
- 'tests/**'
- '.github/workflows/typecheck_stubs.yml'
- 'requirements-tests.txt'
jobs:
stubtest:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-tests.txt
pip install .
- name: Run stubtest
run: python -O tests/test_stubtest.py