Skip to content

Commit f942355

Browse files
committed
Drop test for memory under-use
1 parent 99c1a91 commit f942355

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

ccdproc/tests/test_memory_use.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,13 @@ def test_memory_use_in_combine(combine_method):
6565
# Checks for NOT ENOUGH MEMORY USED; if these fail it means that
6666
# memory_factor in the combine function should perhaps be modified
6767

68+
# DROPPED THESE TESTS -- it isn't clear they were actually useful and
69+
# in any event the important thing to guarantee is that we don't
70+
# exceed the memory limit.
71+
6872
# If the peak is coming in under the limit something need to be fixed
6973
# assert np.max(mem_use) >= 0.95 * memory_limit_mb
7074

7175
# If the average is really low perhaps we should look at reducing peak
7276
# usage. Nothing special, really, about the factor 0.4 below.
73-
assert np.mean(mem_use[mem_use > 0]) > 0.4 * memory_limit_mb
77+
# assert np.mean(mem_use[mem_use > 0]) > 0.4 * memory_limit_mb

0 commit comments

Comments
 (0)