Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
hauntsaninja committed Oct 24, 2024
1 parent d1e847e commit e2437e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion mypy_primer/type_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,9 @@ async def pip_install(*targets: str) -> None:
env = os.environ.copy()
env["MYPY_USE_MYPYC"] = "1"
env["MYPYC_OPT_LEVEL"] = str(mypyc_compile_level) # can be zero
await pip_install("typing_extensions", "mypy_extensions", "tomli", "types-psutil", "types-setuptools")
await pip_install(
"typing_extensions", "mypy_extensions", "tomli", "types-psutil", "types-setuptools"
)
await run(
[str(venv.python), "-m", "pip", "install", ".", "--no-build-isolation"],
cwd=repo_dir,
Expand Down

0 comments on commit e2437e6

Please sign in to comment.