Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
numpy-stl
1 parent cd34bb0 commit f6109faCopy full SHA for f6109fa
1 file changed
mypy_primer/projects.py
@@ -1684,6 +1684,15 @@ def get_projects() -> list[Project]:
1684
expected_success=("mypy",),
1685
cost={"mypy": 6},
1686
),
1687
+ Project(
1688
+ location="https://github.com/WoLpH/numpy-stl",
1689
+ mypy_cmd="{mypy} {paths}",
1690
+ pyright_cmd="{pyright} {paths}",
1691
+ pyrefly_cmd="{pyrefly}",
1692
+ paths=["stl"],
1693
+ deps=["numpy", "python-utils"],
1694
+ expected_success=("mypy", "pyright", "pyrefly"),
1695
+ ),
1696
]
1697
assert len(projects) == len({p.name for p in projects})
1698
for p in projects:
0 commit comments