File tree 2 files changed +1
-13
lines changed
2 files changed +1
-13
lines changed Original file line number Diff line number Diff line change @@ -402,10 +402,6 @@ def test_virtualfile_from_vectors():
402
402
assert output == expected
403
403
404
404
405
- @pytest .mark .xfail (
406
- condition = gmt_version < Version ("6.1.1" ),
407
- reason = "GMT_Put_Strings only works for GMT 6.1.1 and above" ,
408
- )
409
405
def test_virtualfile_from_vectors_one_string_column ():
410
406
"Test passing in one column with string dtype into virtual file dataset"
411
407
size = 5
@@ -421,10 +417,6 @@ def test_virtualfile_from_vectors_one_string_column():
421
417
assert output == expected
422
418
423
419
424
- @pytest .mark .xfail (
425
- condition = gmt_version < Version ("6.1.1" ),
426
- reason = "GMT_Put_Strings only works for GMT 6.1.1 and above" ,
427
- )
428
420
def test_virtualfile_from_vectors_two_string_columns ():
429
421
"Test passing in two columns of string dtype into virtual file dataset"
430
422
size = 5
@@ -688,7 +680,7 @@ def test_get_default():
688
680
with clib .Session () as lib :
689
681
assert lib .get_default ("API_GRID_LAYOUT" ) in ["rows" , "columns" ]
690
682
assert int (lib .get_default ("API_CORES" )) >= 1
691
- assert Version (lib .get_default ("API_VERSION" )) >= Version ("6.1.0 " )
683
+ assert Version (lib .get_default ("API_VERSION" )) >= Version ("6.1.1 " )
692
684
693
685
694
686
def test_get_default_fails ():
Original file line number Diff line number Diff line change 14
14
gmt_version = Version (_lib .info ["version" ])
15
15
16
16
17
- @pytest .mark .xfail (
18
- condition = gmt_version < Version ("6.1.1" ),
19
- reason = "GMT_Put_Strings only works for GMT 6.1.1 and above" ,
20
- )
21
17
def test_put_strings ():
22
18
"Check that assigning a numpy array of dtype str to a dataset works"
23
19
with clib .Session () as lib :
You can’t perform that action at this time.
0 commit comments