Skip to content

Commit 7c847cc

Browse files
authored
add hynek/svcs (#184)
1 parent 34fb4b5 commit 7c847cc

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

mypy_primer/projects.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1618,6 +1618,14 @@ def get_projects() -> list[Project]:
16181618
],
16191619
cost={"mypy": 34},
16201620
),
1621+
Project(
1622+
location="https://github.com/hynek/svcs",
1623+
mypy_cmd="{mypy} {paths}",
1624+
pyright_cmd="{pyright} {paths}",
1625+
paths=["src", "tests/typing"],
1626+
deps=["attrs", "flask", "aiohttp", "fastapi", "starlette"],
1627+
expected_success=("mypy", "pyright"),
1628+
),
16211629
]
16221630
assert len(projects) == len({p.name for p in projects})
16231631
for p in projects:

0 commit comments

Comments
 (0)