Skip to content

Commit e8c15f7

Browse files
committed
[TEST/CLN] Fixing some references to run tests
1 parent c0faf74 commit e8c15f7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

gempy/core/data/grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ class Grid(object):
5252
"""
5353

5454
def __init__(self, extent=None, resolution=None):
55-
5655
self.values = np.empty((0, 3))
5756
self.values_r = np.empty((0, 3))
5857
self.length = np.empty(0)
58+
self._octree_levels = -1
5959
self.grid_types = np.array(['regular', 'custom', 'topography', 'sections', 'centered', 'octree']) # TODO: Make a enumerator!
6060
self.active_grids_bool = np.zeros(6, dtype=bool)
6161
# All grid types must have values

test/test_modules/test_pile/test_stratigraphic_pile.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
import gempy as gp
1414

1515

16+
@pytest.skip(reason="Not implemented yet")
1617
class TestStratigraphicPile:
1718
@pytest.fixture(autouse=True)
1819
def borehole_set(self):

0 commit comments

Comments
 (0)