Skip to content

Commit

Permalink
test: fix print
Browse files Browse the repository at this point in the history
  • Loading branch information
mkniewallner committed Oct 8, 2024
1 parent d655feb commit 32d9240
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/functional/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ def pytest_sessionstart(session: pytest.Session) -> None:
text=True,
check=True,
)
print("uv build output: %s", result.stdout) # noqa: T201
print("uv build errors: %s", result.stderr) # noqa: T201
print(f"uv build output: {result.stdout}") # noqa: T201
print(f"uv build errors: {result.stderr}") # noqa: T201
except subprocess.CalledProcessError as e:
print("Output: %s", e.output) # noqa: T201
print("Errors: %s", e.stderr) # noqa: T201
print(f"Output: {e.output}") # noqa: T201
print(f"Errors: {e.stderr}") # noqa: T201
raise


Expand Down

0 comments on commit 32d9240

Please sign in to comment.