Skip to content

Commit 1f69838

Browse files
committed
ci?
1 parent 941a2bf commit 1f69838

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
if [[ "${{ matrix.numpy-version }}" == "1.21" || "${{ matrix.numpy-version }}" == "dev" ]]; then
4141
PYTEST_EXTRA=(-k "numpy and not jax and not torch and not dask and not sparse")
4242
fi
43-
pytest -v "${PYTEST_EXTRA[@]}"
43+
pytest -vx "${PYTEST_EXTRA[@]}"
4444
4545
# Make sure it installs
4646
python -m pip install .

tests/test_all.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ def test_all(library):
2929

3030
module = sys.modules[mod_name]
3131

32+
if library == "common":
33+
print(f">>>> {mod_name}, {module}")
34+
# breakpoint()
35+
3236
# TODO: We should define __all__ in the __init__.py files and test it
3337
# there too.
3438
if not hasattr(module, '__all__'):

0 commit comments

Comments
 (0)