Skip to content

Commit b755bca

Browse files
committed
fix: accept ruff formatting
1 parent c064ea6 commit b755bca

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

test_scripts.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,14 @@
44
def run_cmd(cmd: str) -> Popen:
55
return Popen(cmd.split())
66

7+
78
def run_tests():
89
# Install requirements
9-
with run_cmd('uv run pre-commit run --all-files') as precommit, \
10-
run_cmd('uv run pytest --cov=./ --cov-report=xml --cov-report=html -vv') as pytests:
10+
with (
11+
run_cmd("uv run pre-commit run --all-files") as precommit,
12+
run_cmd(
13+
"uv run pytest --cov=./ --cov-report=xml --cov-report=html -vv"
14+
) as pytests,
15+
):
1116
pass
1217
return precommit.returncode and pytests.returncode

0 commit comments

Comments
 (0)