We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 563c73d commit a311b80Copy full SHA for a311b80
tests/conftest.py
@@ -0,0 +1,13 @@
1
+import pytest
2
+import gymnasium
3
+import numpy as np
4
+import matplotlib
5
+
6
+def pytest_report_header():
7
+ """Print version information in the header of the test report."""
8
+ out_ = f"------------------" + '\n' + \
9
+ f"gymnasium: {gymnasium.__version__}" + '\n' + \
10
+ f"numpy: {np.__version__}" + '\n' + \
11
+ f"matplotlib: {matplotlib.__version__}" + '\n' + \
12
+ f"------------------"
13
+ return out_
0 commit comments