Skip to content

Commit

Permalink
enable pyright on previously hanging projects
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Jul 1, 2024
1 parent 05bae04 commit 213796b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mypy_primer/projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_projects() -> list[Project]:
Project(
location="https://github.com/python/mypy",
mypy_cmd="{mypy} --config-file mypy_self_check.ini -p mypy -p mypyc",
pyright_cmd=None,
pyright_cmd="{pyright} mypy mypyc",
deps=["pytest", "types-psutil", "types-setuptools", "filelock", "tomli"],
expected_mypy_success=True,
cost={"mypy": 15},
Expand Down Expand Up @@ -338,7 +338,7 @@ def get_projects() -> list[Project]:
Project(
location="https://github.com/pycqa/isort",
mypy_cmd="{mypy} --ignore-missing-imports isort",
pyright_cmd=None,
pyright_cmd="{pyright} isort",
deps=["types-setuptools"],
expected_mypy_success=True,
),
Expand Down Expand Up @@ -441,7 +441,7 @@ def get_projects() -> list[Project]:
Project(
location="https://github.com/graphql-python/graphql-core",
mypy_cmd="{mypy} src tests",
pyright_cmd=None,
pyright_cmd="{pyright} src tests",
expected_mypy_success=True,
cost={"mypy": 40},
),
Expand Down

0 comments on commit 213796b

Please sign in to comment.