File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -398,7 +398,8 @@ def test_light_source_shading_default():
398
398
399
399
400
400
@pytest .mark .xfail ((V (np .__version__ ) <= V ('1.9.0' )
401
- and V (np .__version__ ) >= V ('1.7.0' )))
401
+ and V (np .__version__ ) >= V ('1.7.0' )),
402
+ reason = 'numpy version needs to be between 1.7 and 1.9' )
402
403
# Numpy 1.9.1 fixed a bug in masked arrays which resulted in
403
404
# additional elements being masked when calculating the gradient thus
404
405
# the output is different with earlier numpy versions.
Original file line number Diff line number Diff line change @@ -2751,7 +2751,8 @@ def get_z(x, y):
2751
2751
np .ma .getmask (correct_zi_masked ))
2752
2752
2753
2753
2754
- @pytest .mark .xfail (not HAS_NATGRID )
2754
+ @pytest .mark .xfail (not HAS_NATGRID ,
2755
+ reason = 'import of the natgrid toolkit failed' )
2755
2756
def test_griddata_nn ():
2756
2757
# z is a linear function of x and y.
2757
2758
def get_z (x , y ):
You can’t perform that action at this time.
0 commit comments