diff --git a/mypy_primer/projects.py b/mypy_primer/projects.py index 4f802d8..aa0c7d5 100644 --- a/mypy_primer/projects.py +++ b/mypy_primer/projects.py @@ -835,6 +835,7 @@ def get_projects() -> list[Project]: location="https://github.com/DataDog/dd-trace-py", mypy_cmd="{mypy}", pyright_cmd="{pyright}", + ty_cmd="{ty} check --exclude tests/appsec/iast/fixtures/aspects/str/non_utf8_content.py --exclude tests/appsec/iast/fixtures/ast/str/non_utf8_content.py", deps=[ "attrs", "types-six", @@ -1123,7 +1124,7 @@ def get_projects() -> list[Project]: location="https://github.com/rotki/rotki", mypy_cmd="{mypy} {paths}", pyright_cmd="{pyright} {paths}", - paths=["rotkehlchen", "tools/data_faker"], + paths=["rotkehlchen"], deps=["eth-typing", "types-requests", "types-setuptools"], cost={"pyright": 60, "mypy": 9}, ), @@ -1501,6 +1502,7 @@ def get_projects() -> list[Project]: location="https://github.com/mhammond/pywin32", mypy_cmd="{mypy} {paths}", pyright_cmd="{pyright} {paths}", + ty_cmd="{ty} check {paths} --exclude Pythonwin/pywin/test/_dbgscript.py", paths=["."], deps=["types-pywin32", "types-regex", "types-setuptools"], cost={"mypy": 32},