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 1f5284e commit d094951Copy full SHA for d094951
reporting.py
@@ -1,5 +1,6 @@
1
from array_api_tests.dtype_helpers import dtype_to_name
2
from array_api_tests import _array_module as xp
3
+from array_api_tests import __version__
4
5
from types import BuiltinFunctionType, FunctionType
6
import dataclasses
@@ -34,6 +35,7 @@ def pytest_metadata(metadata):
34
35
Additional global metadata for --json-report.
36
"""
37
metadata['array_api_tests_module'] = xp.mod_name
38
+ metadata['array_api_tests_version'] = __version__
39
40
@fixture(autouse=True)
41
def add_api_name_to_metadata(request, json_metadata):
0 commit comments