Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support third-party stub external dependencies in pytype #9449

Merged
merged 7 commits into from
Jan 4, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Run stubtest
shell: bash
run: |
PACKAGES=$(python tests/get_packages.py)
PACKAGES=$(python tests/get_stubtest_system_requirements.py)

if [ "${{ runner.os }}" = "Linux" ]; then
if [ -n "$PACKAGES" ]; then
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stubtest_third_party.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:

if [ -n "$STUBS" ]; then
echo "Testing $STUBS..."
PACKAGES=$(python tests/get_packages.py $STUBS)
PACKAGES=$(python tests/get_stubtest_system_requirements.py $STUBS)

if [ "${{ runner.os }}" = "Linux" ]; then
if [ -n "$PACKAGES" ]; then
Expand Down
31 changes: 26 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
- main
pull_request:
paths-ignore:
- '**/*.md'
- 'scripts/**'
- "**/*.md"
- "scripts/**"

permissions:
contents: read
Expand Down Expand Up @@ -69,6 +69,13 @@ jobs:
cache: pip
cache-dependency-path: requirements-tests.txt
- run: pip install -r requirements-tests.txt
- name: Install external dependencies for 3rd-party stubs
run: |
DEPENDENCIES=$(python tests/get_external_stub_requirements.py)
if [ -n "$DEPENDENCIES" ]; then
echo "Installing packages: $DEPENDENCIES"
pip install $DEPENDENCIES
fi
- run: ./tests/pytype_test.py --print-stderr

mypy:
Expand Down Expand Up @@ -112,12 +119,26 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.10"
cache: pip
cache-dependency-path: requirements-tests.txt
- name: Install external dependencies for 3rd-party stubs
run: |
pip install -r requirements-tests.txt
DEPENDENCIES=$(python tests/get_external_stub_requirements.py)
if [ -n "$DEPENDENCIES" ]; then
echo "Installing packages: $DEPENDENCIES"
pip install $DEPENDENCIES
fi
- run: pip freeze --all
- name: Get pyright version
uses: SebRollen/toml-action@v1.0.2
id: pyright_version
with:
file: 'pyproject.toml'
field: 'tool.typeshed.pyright_version'
file: "pyproject.toml"
field: "tool.typeshed.pyright_version"
- uses: jakebailey/pyright-action@v1
with:
version: ${{ steps.pyright_version.outputs.value }}
Expand All @@ -137,7 +158,7 @@ jobs:
version: ${{ steps.pyright_version.outputs.value }}
python-platform: ${{ matrix.python-platform }}
python-version: ${{ matrix.python-version }}
no-comments: ${{ matrix.python-version != '3.10' || matrix.python-platform != 'Linux' }} # Having each job create the same comment is too noisy.
no-comments: ${{ matrix.python-version != '3.10' || matrix.python-platform != 'Linux' }} # Having each job create the same comment is too noisy.

stub-uploader:
name: Run the stub_uploader tests
Expand Down
4 changes: 3 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,11 @@ virtual environment. If you're not familiar with what it is and how it works,
please refer to this
[documentation](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/).

Some tests require extra setup steps to install the required dependencies.

### Linux/Mac OS

On Linux and Mac OS, you will be able to run the full test suite on Python 3.8,
On Linux and Mac OS, you will be able to run the full test suite on Python
3.9 or 3.10.
To install the necessary requirements, run the following commands from a
terminal window:
Expand Down
2 changes: 1 addition & 1 deletion stubs/D3DShot/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
version = "0.1.*"
requires = ["types-Pillow"]
requires = ["types-Pillow", "numpy"]

[tool.stubtest]
# TODO: figure out how to run stubtest for this package
Expand Down
1 change: 1 addition & 0 deletions stubs/JACK-Client/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
version = "0.5.*"
requires = ["numpy"]

[tool.stubtest]
ignore_missing_stub = false
Expand Down
1 change: 1 addition & 0 deletions stubs/pycocotools/METADATA.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
version = "2.0.*"
requires = ["numpy"]

[tool.stubtest]
ignore_missing_stub = false
13 changes: 12 additions & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,18 @@ objects at runtime.
in the `tests` and `scripts` directories.

To run the tests, follow the [setup instructions](../CONTRIBUTING.md#preparing-the-environment)
in the `CONTRIBUTING.md` document. In particular, we recommend running with Python 3.9+.
in the `CONTRIBUTING.md` document. In particular, you have to run with Python 3.9+.
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I changed the wording here because since #9382, test/utils.py (which is used by all tests) uses functools.cache, which is unavailable in Python 3.8.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In practice we've required 3.9+ for a lot longer, due to the use of ast.unparse in tests/check_new_syntax.py :)

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good to know. I believe you could still run other tests, so "recommend" wasn't too inaccurate :P

I only noticed because I had 3.8 installed in WSL.


In order for `pytype_test` and `pyright_test` to work correctly, some third-party stubs may require dependencies external to typeshed to be installed in your virtual environment prior to running the test.
You can list or install all of a stubs package's external dependencies using the following script:
```bash
(.venv3)$ python tests/get_external_stub_requirements.py <third_party_stub> # List external dependencies for <third_party_stub>
(.venv3)$ python tests/get_external_stub_requirements.py <third_party_stub1> <third_party_stub2> # List external dependencies for <third_party_stub1> and <third_party_stub2>
(.venv3)$ python tests/get_external_stub_requirements.py # List external dependencies for all third-party stubs in typeshed
# Install external dependencies for all third-party stubs in typeshed
(.venv3)$ DEPENDENCIES=$(python tests/get_external_stub_requirements.py)
(.venv3)$ if [ -n "$DEPENDENCIES" ]; then pip install $DEPENDENCIES; fi
```

## Run all tests for a specific stub

Expand Down
18 changes: 18 additions & 0 deletions tests/get_external_stub_requirements.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/usr/bin/env python3
from __future__ import annotations

import os
import sys

from utils import read_dependencies

distributions = sys.argv[1:]
if not distributions:
distributions = os.listdir("stubs")

requirements = set[str]()
for distribution in distributions:
requirements.update(read_dependencies(distribution).external_pkgs)

for requirement in sorted(requirements):
print(requirement)
File renamed without changes.
4 changes: 2 additions & 2 deletions tests/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
import subprocess
import sys
import venv
from collections.abc import Mapping
from collections.abc import Iterable, Mapping
from functools import cache
from pathlib import Path
from typing import Iterable, NamedTuple
from typing import NamedTuple
from typing_extensions import Annotated

import pathspec # type: ignore[import]
Expand Down