We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c064ea6 commit b755bcaCopy full SHA for b755bca
test_scripts.py
@@ -4,9 +4,14 @@
4
def run_cmd(cmd: str) -> Popen:
5
return Popen(cmd.split())
6
7
+
8
def run_tests():
9
# Install requirements
- 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:
+ 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
+ ):
16
pass
17
return precommit.returncode and pytests.returncode
0 commit comments