Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 18e6ca9

Browse files
authored
Add PyCA cryptography to projects (#235)
Signed-off-by: William Woodruff <[email protected]>
1 parent f6109fa commit 18e6ca9

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

mypy_primer/projects.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1693,6 +1693,15 @@ def get_projects() -> list[Project]:
16931693
deps=["numpy", "python-utils"],
16941694
expected_success=("mypy", "pyright", "pyrefly"),
16951695
),
1696+
Project(
1697+
location="https://github.com/pyca/cryptography",
1698+
mypy_cmd="{mypy} {paths}",
1699+
pyright_cmd="{pyright} {paths}",
1700+
paths=["src/cryptography", "tests"],
1701+
deps=["cffi", "typing-extensions"],
1702+
expected_success=("mypy", "pyright"),
1703+
cost={"mypy": 6},
1704+
),
16961705
]
16971706
assert len(projects) == len({p.name for p in projects})
16981707
for p in projects:

0 commit comments

Comments
 (0)