Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

fix(travis 2.7): Travis memory errors #627

Merged
merged 2 commits into from
Aug 8, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions autotest/t007_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -975,17 +975,17 @@ def test_vertex_model_dot_plot():
exe_name="mf6",
sim_ws=sim_path)
disv_ml = disv_sim.get_model('gwf_1')

ax = disv_ml.plot()

assert ax
if sys.version_info[0] > 2:
ax = disv_ml.plot()
assert ax


def test_model_dot_plot():
loadpth = os.path.join('..', 'examples', 'data', 'secp')
ml = flopy.modflow.Modflow.load('secp.nam', model_ws=loadpth)
ax = ml.plot()
assert ax
if sys.version_info[0] > 2:
ax = ml.plot()
assert ax


def test_get_rc_from_node_coordinates():
Expand Down