Skip to content
This repository was archived by the owner on Jun 27, 2025. It is now read-only.

Commit 244deba

Browse files
committed
updated test
1 parent 96c1d9c commit 244deba

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

doc/articles/get-all-any.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def get_versions() -> str:
149149
FF_ORDER = [f.NAME for f in sorted(CLS_FF, key=lambda ff: ff.SORT)]
150150

151151
# -------------------------------------------------------------------------------
152-
NUMBER = 2
152+
NUMBER = 20
153153

154154
from itertools import product
155155

tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ def build(context):
3737

3838
@invoke.task(build)
3939
def test(context):
40-
run(context, f"{sys.executable} -m pytest")
40+
run(context, f"{sys.executable} -m pytest -s")

test/test_unit.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -924,6 +924,8 @@ def test_fam_array_get_any_b():
924924
a1 = np.array([4294967295], dtype=np.uint32)
925925
a1.flags.writeable = False
926926
a1_list = list(a1)
927+
import sys
928+
print(4294967295, a1, a1_list, file=sys.stderr)
927929
fam = FrozenAutoMap(a1)
928930

929931
post1 = fam.get_any(a1_list)

0 commit comments

Comments
 (0)