Skip to content

Commit

Permalink
chmod +x pw
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenham authored and KotlinIsland committed Dec 12, 2024
1 parent 8f3c782 commit f1a7595
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
12 changes: 11 additions & 1 deletion misc/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
Empty file modified pw
100644 → 100755
Empty file.
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ skip-magic-trailing-comma = true
force-exclude = '''
^/mypy/typeshed|
^/mypyc/test-data|
^/test-data
^/test-data|
^/pw$
'''

[tool.ruff]
Expand Down

0 comments on commit f1a7595

Please sign in to comment.