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 d62073a commit 1c42d3aCopy full SHA for 1c42d3a
reporting.py
@@ -9,6 +9,10 @@
9
from hypothesis.strategies import SearchStrategy
10
11
from pytest import mark
12
+try:
13
+ import pytest_jsonreport # noqa
14
+except ImportError:
15
+ raise ImportError("pytest-json-report is required to run the array API tests")
16
17
def to_json_serializable(o):
18
if o in dtype_to_name:
0 commit comments