Skip to content

Commit

Permalink
Skip Sedov/HDF test if h5py or scipy is not installed.
Browse files Browse the repository at this point in the history
  • Loading branch information
ketch committed Jul 17, 2014
1 parent 76cf0c7 commit 1117ecc
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions examples/euler_3d/test_sedov_and_hdf.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ def test_sedov_and_hdf():
"""Test HDF I/O on Sedov 3D Euler application"""

import Sedov
try:
import h5py
import scipy
except ImportError:
import nose
raise nose.SkipTest

def verify_sedov(controller):
import os
Expand Down

0 comments on commit 1117ecc

Please sign in to comment.