We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b524015 commit 6b9c8dcCopy full SHA for 6b9c8dc
conftest.py
@@ -1,7 +1,22 @@
1
# content of conftest.py
2
3
+import guidata
4
+import qtpy
5
from guidata.env import execenv
6
7
+import plotpy
8
+
9
# Turn on unattended mode for executing tests without user interaction
10
execenv.unattended = True
11
execenv.verbose = "quiet"
12
13
14
+def pytest_report_header(config):
15
+ """Add additional information to the pytest report header."""
16
+ qtbindings_version = qtpy.PYSIDE_VERSION
17
+ if qtbindings_version is None:
18
+ qtbindings_version = qtpy.PYQT_VERSION
19
+ return [
20
+ f"PlotPy {plotpy.__version__}, guidata {guidata.__version__}, "
21
+ f"{qtpy.API_NAME} {qtbindings_version} [Qt version: {qtpy.QT_VERSION}]",
22
+ ]
0 commit comments