Skip to content

Commit 9b3b334

Browse files
committed
Refactor pytest report header formatting for improved readability
1 parent 5d5cf1a commit 9b3b334

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plotpy/tests/conftest.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ def pytest_report_header(config):
5959
if qtbindings_version is None:
6060
qtbindings_version = qtpy.PYQT_VERSION
6161
return [
62-
f"PlotPy {plotpy.__version__}, guidata {guidata.__version__}, "
63-
f"PythonQwt {qwt.__version__}, "
62+
f"PlotPy {plotpy.__version__}",
63+
f" guidata {guidata.__version__}, PythonQwt {qwt.__version__}, "
6464
f"{qtpy.API_NAME} {qtbindings_version} [Qt version: {qtpy.QT_VERSION}]",
65-
f"NumPy {numpy.__version__}, SciPy {scipy.__version__}, "
66-
f"h5py {h5py.__version__}, "
67-
f"Pillow {PIL.__version__}, tifffile {tifffile.__version__}",
65+
f" NumPy {numpy.__version__}, SciPy {scipy.__version__}, "
66+
f"h5py {h5py.__version__}, Pillow {PIL.__version__}, "
67+
f"tifffile {tifffile.__version__}",
6868
]

0 commit comments

Comments
 (0)