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 941a2bf commit 1f69838Copy full SHA for 1f69838
.github/workflows/tests.yml
@@ -40,7 +40,7 @@ jobs:
40
if [[ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]]; then
41
PYTEST_EXTRA=(-k "numpy and not jax and not torch and not dask and not sparse")
42
fi
43
- pytest -v "${PYTEST_EXTRA[@]}"
+ pytest -vx "${PYTEST_EXTRA[@]}"
44
45
# Make sure it installs
46
python -m pip install .
tests/test_all.py
@@ -29,6 +29,10 @@ def test_all(library):
29
30
module = sys.modules[mod_name]
31
32
+ if library == "common":
33
+ print(f">>>> {mod_name}, {module}")
34
+# breakpoint()
35
+
36
# TODO: We should define __all__ in the __init__.py files and test it
37
# there too.
38
if not hasattr(module, '__all__'):
0 commit comments