Skip to content

PEP 561 actually specifies using -stubs on the end of a directory that is meant to be shipped separately #243

PEP 561 actually specifies using -stubs on the end of a directory that is meant to be shipped separately

PEP 561 actually specifies using -stubs on the end of a directory that is meant to be shipped separately #243

Workflow file for this run

name: 'Test'
on: [push, pull_request, workflow_dispatch]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run:
python -m pip install -r tests/requirements.txt
- name: Run pyright tests
uses: gramster/pyright-action@main
with:
project: tests/pyrighttestconfig.json
warn-partial: true