Skip to content

Commit

Permalink
Remove the last bits of biggus (SciTools#2568)
Browse files Browse the repository at this point in the history
  • Loading branch information
DPeterK authored and bjlittle committed May 31, 2017
1 parent 015cee9 commit 51bb2ae
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 50 deletions.
4 changes: 2 additions & 2 deletions lib/iris/_lazy_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,14 +60,14 @@ def is_lazy_data(data):
At present, this means simply a Dask array.
We determine this by checking for a "compute" property.
NOTE: ***for now only*** accept Biggus arrays also.
"""
result = hasattr(data, 'compute')
return result


# A magic value, borrowed from biggus
# A magic value, chosen to minimise chunk creation time and chunk processing
# time within dask.
_MAX_CHUNK_SIZE = 8 * 1024 * 1024 * 2


Expand Down
7 changes: 0 additions & 7 deletions lib/iris/tests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1118,13 +1118,6 @@ class MyPlotTests(test.GraphicsTest):
return skip(fn)


# Control for @skip_biggus : Set to False to run the biggus-dependent tests.
_SKIP_BIGGUS_DEPENDENT_TESTS = True

skip_biggus = unittest.skipIf(_SKIP_BIGGUS_DEPENDENT_TESTS,
reason='Test(s) assume biggus in place of dask.')


skip_grib = unittest.skipIf(not GRIB_AVAILABLE, 'Test(s) require "gribapi", '
'which is not available.')

Expand Down
41 changes: 0 additions & 41 deletions lib/iris/tests/unit/test_skip_biggus.py

This file was deleted.

0 comments on commit 51bb2ae

Please sign in to comment.