diff --git a/misc/install.py b/misc/install.py index edc74467d..656b1543f 100644 --- a/misc/install.py +++ b/misc/install.py @@ -5,7 +5,17 @@ def main(args: argparse.Namespace): venv_args = ["uv", "venv", "--python", args.python, f".venv{args.python}"] check_call(venv_args) - install_args = ["uv", "pip", "install", "-r", "test-requirements.txt", "-e", ".", "--python", f".venv{args.python}"] + install_args = [ + "uv", + "pip", + "install", + "-r", + "test-requirements.txt", + "-e", + ".", + "--python", + f".venv{args.python}", + ] check_call(install_args) diff --git a/pw b/pw old mode 100644 new mode 100755 diff --git a/pyproject.toml b/pyproject.toml index bfad5c856..e395ede29 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,8 @@ skip-magic-trailing-comma = true force-exclude = ''' ^/mypy/typeshed| ^/mypyc/test-data| -^/test-data +^/test-data| +^/pw$ ''' [tool.ruff]