Closed lhoupert closed 4 years ago
👋 Thanks for opening your first issue here! Please make sure you filled out the template with as much detail as possible. You might also want to take a look at our contributing guidelines and code of conduct.
Hi @lhoupert, thanks for reporting this issue and filling up the template in such detail! We're aware of the 53 test failures, and you'll notice that most of them are grd*
related. It's to do with the change in the default earth_relief
grids from gridline registered to pixel registered when going from GMT 6.0 to 6.1 (our tests were built on GMT 6.0). See also https://forum.generic-mapping-tools.org/t/about-pygmt-test/598 and the disclaimer on https://forum.generic-mapping-tools.org/t/pygmt-v0-1-2-released/629/1.
We're working on a fix at #507, but in the meantime, you have a few options:
Note that PyGMT incorrectly assumes all xarray
grids to be gridline registered with Cartesian coordinates by default (rather than pixel registered with Geographic coordinates). If you're plotting grids, I would strongly recommend passing them in as filenames (e.g. climatedata.nc
) instead of as xarray.DataArray
grids at the moment. You may also be interested in reading the discussion at #487 to find out more. Let us know if you need more clarification.
Thank you @weiji14 for your quick reply!
If I stay with my current version GMT 6.1.0, does it mean I will not be able to use the grd*
function?
I would like to run the code below in pygmt, is it possible?
topo_grd="@earth_relief_06m.grd"
gmt grd2cpt $topo_grd -Cglobe -L-500/7000 -T-500/7000/20 -Z > topo.cpt
If I stay with my current version GMT 6.1.0, does it mean I will not be able to use the
grd*
function?
You can still use it, it should be okay if you pass in filenames as input, rather than xarray grids (which has buggy behaviour). I.e. grdimage("earth_relief_06m.grd")
is good, grdimage(xr.open_dataarray("earth_relief_06m.grd"))
is bad.
I would like to run the code below in pygmt, is it possible?
topo_grd="@earth_relief_06m.grd" gmt grd2cpt $topo_grd -Cglobe -L-500/7000 -T-500/7000/20 -Z > topo.cpt
Well, we haven't implemented grd2cpt
yet, only makecpt
. I'd be keen to see it in PyGMT though, would you mind opening a feature request for it? :smile:
Great thank you I will explore pygmt for a little bit before asking new features :-D
Hi @lhoupert, we've just released PyGMT v0.2.0 (see https://forum.generic-mapping-tools.org/t/pygmt-v0-2-0-released/879). Sorry that this took a while, but the test failures should be gone now, and the xarray grid plotting should more or less work (but do upgrade to GMT 6.1.1 first).
Feel free to open up other feature requests/bug reports if you see that something is amiss. Have a great day :smile:
Great! Thank you for your work on this. I will give it another try when I am back on pygmt!
Le sam. 12 sept. 2020 à 22:31, Wei Ji notifications@github.com a écrit :
Hi @lhoupert https://github.com/lhoupert, we've just released PyGMT v0.2.0 (see https://forum.generic-mapping-tools.org/t/pygmt-v0-2-0-released/879). Sorry that this took a while, but the test failures should be gone now, and the xarray grid plotting should more or less work (but do upgrade to GMT 6.1.1 first).
Feel free to open up other feature requests/bug reports if you see that something is amiss. Have a great day 😄
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/GenericMappingTools/pygmt/issues/508#issuecomment-691552617, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACNPBJYSG7YXD4G24P4OAV3SFPSDLANCNFSM4OUTPD4A .
Description of the problem
Hi I followed the tutorial to install pygmt and gmt through conda [described here]. But I am running through a lot of faillure when running pygmt.test().
Any idea why? Should I try a less recent version of python?
Full code that generated the error
53 tests failed, 212 passed, 1 skipped
Full error message
Click to expand!
```python In [2]: pygmt.test() PyGMT information: version: v0.1.2 System information: python: 3.8.3 | packaged by conda-forge | (default, Jun 1 2020, 17:21:09) [Clang 9.0.1 ] executable: /Users/locupe/anaconda2/envs/pygmt/bin/python machine: macOS-10.15.5-x86_64-i386-64bit Dependency information: numpy: 1.18.5 pandas: 1.0.5 xarray: 0.15.1 netCDF4: 1.5.3 packaging: 20.4 ghostscript: 9.22 gmt: 6.1.0 GMT library information: binary dir: /Users/locupe/anaconda2/envs/pygmt/bin cores: 12 grid layout: rows library path: /Users/locupe/anaconda2/envs/pygmt/lib/libgmt.dylib padding: 2 plugin dir: /Users/locupe/anaconda2/envs/pygmt/lib/gmt/plugins share dir: /Users/locupe/anaconda2/envs/pygmt/share/gmt version: 6.1.0 ======================================================================================================================= test session starts ======================================================================================================================= platform darwin -- Python 3.8.3, pytest-5.4.3, py-1.9.0, pluggy-0.13.1 -- /Users/locupe/anaconda2/envs/pygmt/bin/python cachedir: .pytest_cache Matplotlib: 3.2.2 Freetype: 2.10.2 rootdir: /Users/locupe/Dropbox/Work/Python/Repos_perso/analysis_eel_data plugins: mpl-0.11 collected 266 items base_plotting.py::pygmt.base_plotting.BasePlotting._preprocess <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/base_plotting.py PASSED [ 0%] figure.py::pygmt.figure.Figure <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/figure.py PASSED [ 0%] clib/conversion.py::pygmt.clib.conversion.as_c_contiguous <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/conversion.py PASSED [ 1%] clib/conversion.py::pygmt.clib.conversion.dataarray_to_matrix <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/conversion.py FAILED [ 1%] clib/conversion.py::pygmt.clib.conversion.kwargs_to_ctypes_array <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/conversion.py PASSED [ 1%] clib/conversion.py::pygmt.clib.conversion.vectors_to_arrays <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/conversion.py PASSED [ 2%] clib/session.py::pygmt.clib.session.Session <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/session.py FAILED [ 2%] clib/session.py::pygmt.clib.session.Session._check_dtype_and_dim <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/session.py PASSED [ 3%] clib/session.py::pygmt.clib.session.Session.extract_region <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/session.py PASSED [ 3%] clib/session.py::pygmt.clib.session.Session.get_libgmt_func <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/session.py PASSED [ 3%] clib/session.py::pygmt.clib.session.Session.open_virtual_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/session.py PASSED [ 4%] clib/session.py::pygmt.clib.session.Session.virtualfile_from_grid <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/session.py FAILED [ 4%] clib/session.py::pygmt.clib.session.Session.virtualfile_from_matrix <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/session.py PASSED [ 4%] clib/session.py::pygmt.clib.session.Session.virtualfile_from_vectors <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/session.py PASSED [ 5%] datasets/earth_relief.py::pygmt.datasets.earth_relief._is_valid_resolution <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/datasets/earth_relief.py PASSED [ 5%] datasets/earth_relief.py::pygmt.datasets.earth_relief._shape_from_resolution <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/datasets/earth_relief.py PASSED [ 6%] helpers/decorators.py::pygmt.helpers.decorators.fmt_docstring <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/helpers/decorators.py PASSED [ 6%] helpers/decorators.py::pygmt.helpers.decorators.kwargs_to_strings <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/helpers/decorators.py PASSED [ 6%] helpers/decorators.py::pygmt.helpers.decorators.use_alias <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/helpers/decorators.py PASSED [ 7%] helpers/tempfile.py::pygmt.helpers.tempfile.GMTTempFile <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/helpers/tempfile.py PASSED [ 7%] helpers/utils.py::pygmt.helpers.utils.build_arg_string <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/helpers/utils.py PASSED [ 7%] helpers/utils.py::pygmt.helpers.utils.data_kind <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/helpers/utils.py PASSED [ 8%] helpers/utils.py::pygmt.helpers.utils.dummy_context <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/helpers/utils.py PASSED [ 8%] helpers/utils.py::pygmt.helpers.utils.is_nonstr_iter <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/helpers/utils.py PASSED [ 9%] tests/test_basemap.py::test_basemap_required_args <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_basemap.py PASSED [ 9%] tests/test_basemap.py::test_basemap <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_basemap.py PASSED [ 9%] tests/test_basemap.py::test_basemap_list_region <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_basemap.py PASSED [ 10%] tests/test_basemap.py::test_basemap_loglog <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_basemap.py PASSED [ 10%] tests/test_basemap.py::test_basemap_power_axis <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_basemap.py PASSED [ 10%] tests/test_basemap.py::test_basemap_polar <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_basemap.py FAILED [ 11%] tests/test_basemap.py::test_basemap_winkel_tripel <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_basemap.py PASSED [ 11%] tests/test_basemap.py::test_basemap_aliases <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_basemap.py PASSED [ 12%] tests/test_blockmedian.py::test_blockmedian_input_dataframe <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_blockmedian.py PASSED [ 12%] tests/test_blockmedian.py::test_blockmedian_wrong_kind_of_input_table_matrix <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_blockmedian.py PASSED [ 12%] tests/test_blockmedian.py::test_blockmedian_wrong_kind_of_input_table_grid <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_blockmedian.py PASSED [ 13%] tests/test_blockmedian.py::test_blockmedian_input_filename <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_blockmedian.py PASSED [ 13%] tests/test_blockmedian.py::test_blockmedian_without_outfile_setting <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_blockmedian.py PASSED [ 13%] tests/test_clib.py::test_getitem <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 14%] tests/test_clib.py::test_create_destroy_session <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 14%] tests/test_clib.py::test_create_session_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 15%] tests/test_clib.py::test_destroy_session_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 15%] tests/test_clib.py::test_call_module <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 15%] tests/test_clib.py::test_call_module_invalid_arguments <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 16%] tests/test_clib.py::test_call_module_invalid_name <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 16%] tests/test_clib.py::test_call_module_error_message <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py FAILED [ 16%] tests/test_clib.py::test_method_no_session <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 17%] tests/test_clib.py::test_parse_constant_single <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 17%] tests/test_clib.py::test_parse_constant_composite <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 18%] tests/test_clib.py::test_parse_constant_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 18%] tests/test_clib.py::test_create_data_dataset <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 18%] tests/test_clib.py::test_create_data_grid_dim <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 19%] tests/test_clib.py::test_create_data_grid_range <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 19%] tests/test_clib.py::test_create_data_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 19%] tests/test_clib.py::test_put_vector <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 20%] tests/test_clib.py::test_put_vector_invalid_dtype <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 20%] tests/test_clib.py::test_put_vector_wrong_column <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 21%] tests/test_clib.py::test_put_vector_2d_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 21%] tests/test_clib.py::test_put_matrix <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 21%] tests/test_clib.py::test_put_matrix_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 22%] tests/test_clib.py::test_put_matrix_grid <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 22%] tests/test_clib.py::test_virtual_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 22%] tests/test_clib.py::test_virtual_file_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 23%] tests/test_clib.py::test_virtual_file_bad_direction <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 23%] tests/test_clib.py::test_virtualfile_from_vectors <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 24%] tests/test_clib.py::test_virtualfile_from_vectors_transpose <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 24%] tests/test_clib.py::test_virtualfile_from_vectors_diff_size <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 24%] tests/test_clib.py::test_virtualfile_from_matrix <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 25%] tests/test_clib.py::test_virtualfile_from_matrix_slice <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 25%] tests/test_clib.py::test_virtualfile_from_vectors_pandas <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 25%] tests/test_clib.py::test_virtualfile_from_vectors_arraylike <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 26%] tests/test_clib.py::test_extract_region_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 26%] tests/test_clib.py::test_extract_region_two_figures <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 27%] tests/test_clib.py::test_write_data_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 27%] tests/test_clib.py::test_dataarray_to_matrix_works <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 27%] tests/test_clib.py::test_dataarray_to_matrix_negative_x_increment <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 28%] tests/test_clib.py::test_dataarray_to_matrix_negative_y_increment <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 28%] tests/test_clib.py::test_dataarray_to_matrix_negative_x_and_y_increment <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 28%] tests/test_clib.py::test_dataarray_to_matrix_dims_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 29%] tests/test_clib.py::test_dataarray_to_matrix_inc_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 29%] tests/test_clib.py::test_get_default <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 30%] tests/test_clib.py::test_get_default_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 30%] tests/test_clib.py::test_info_dict <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 30%] tests/test_clib.py::test_fails_for_wrong_version <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib.py PASSED [ 31%] tests/test_clib_loading.py::test_check_libgmt <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib_loading.py PASSED [ 31%] tests/test_clib_loading.py::test_load_libgmt <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib_loading.py PASSED [ 31%] tests/test_clib_loading.py::test_load_libgmt_fail <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib_loading.py PASSED [ 32%] tests/test_clib_loading.py::test_clib_names <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_clib_loading.py PASSED [ 32%] tests/test_coast.py::test_coast <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_coast.py PASSED [ 33%] tests/test_coast.py::test_coast_iceland <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_coast.py FAILED [ 33%] tests/test_coast.py::test_coast_aliases <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_coast.py PASSED [ 33%] tests/test_coast.py::test_coast_world_mercator <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_coast.py PASSED [ 34%] tests/test_colorbar.py::test_colorbar_using_paper_coordinates <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 34%] tests/test_colorbar.py::test_colorbar_using_paper_coordinates_horizontal <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 34%] tests/test_colorbar.py::test_colorbar_positioned_using_map_coordinates <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 35%] tests/test_colorbar.py::test_colorbar_positioned_using_justification_code <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py FAILED [ 35%] tests/test_colorbar.py::test_colorbar_positioned_using_normalized_coords <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 36%] tests/test_colorbar.py::test_colorbar_box <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 36%] tests/test_colorbar.py::test_colorbar_box_with_pen <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 36%] tests/test_colorbar.py::test_colorbar_box_with_fill <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 37%] tests/test_colorbar.py::test_colorbar_box_with_clearance <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 37%] tests/test_colorbar.py::test_colorbar_box_with_secondary_border <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 37%] tests/test_colorbar.py::test_colorbar_box_with_rounded_corners <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 38%] tests/test_colorbar.py::test_colorbar_box_with_offset_background <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 38%] tests/test_colorbar.py::test_colorbar_truncated_to_zlow_zhigh <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 39%] tests/test_colorbar.py::test_colorbar_scaled_z_values <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_colorbar.py PASSED [ 39%] tests/test_config.py::test_config <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py FAILED [ 39%] tests/test_config.py::test_config_font_one <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py FAILED [ 40%] tests/test_config.py::test_config_font_annot <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py FAILED [ 40%] tests/test_config.py::test_config_format_time_map <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py PASSED [ 40%] tests/test_config.py::test_config_map_annot_offset <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py PASSED [ 41%] tests/test_config.py::test_config_map_grid_cross_size <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py PASSED [ 41%] tests/test_config.py::test_config_map_grid_pen <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py PASSED [ 42%] tests/test_config.py::test_config_map_tick_length <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py PASSED [ 42%] tests/test_config.py::test_config_map_tick_pen <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_config.py PASSED [ 42%] tests/test_contour.py::test_contour_fail_no_data <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_contour.py PASSED [ 43%] tests/test_contour.py::test_contour_vec <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_contour.py PASSED [ 43%] tests/test_contour.py::test_contour_matrix <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_contour.py PASSED [ 43%] tests/test_contour.py::test_contour_from_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_contour.py PASSED [ 44%] tests/test_datasets.py::test_japan_quakes <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_datasets.py PASSED [ 44%] tests/test_datasets.py::test_ocean_ridge_points <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_datasets.py PASSED [ 45%] tests/test_datasets.py::test_sample_bathymetry <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_datasets.py PASSED [ 45%] tests/test_datasets.py::test_usgs_quakes <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_datasets.py PASSED [ 45%] tests/test_datasets.py::test_earth_relief_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_datasets.py PASSED [ 46%] tests/test_datasets.py::test_earth_relief_01d <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_datasets.py FAILED [ 46%] tests/test_datasets.py::test_earth_relief_30m <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_datasets.py FAILED [ 46%] tests/test_figure.py::test_figure_region <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_figure.py PASSED [ 47%] tests/test_figure.py::test_figure_region_multiple <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_figure.py PASSED [ 47%] tests/test_figure.py::test_figure_region_country_codes <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_figure.py PASSED [ 48%] tests/test_figure.py::test_figure_savefig_exists <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_figure.py PASSED [ 48%] tests/test_figure.py::test_figure_savefig_transparent <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_figure.py PASSED [ 48%] tests/test_figure.py::test_figure_savefig <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_figure.py PASSED [ 49%] tests/test_figure.py::test_figure_show <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_figure.py PASSED [ 49%] tests/test_figure.py::test_shift_origin <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_figure.py PASSED [ 50%] tests/test_grdcontour.py::test_grdcontour <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcontour.py FAILED [ 50%] tests/test_grdcontour.py::test_grdcontour_labels <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcontour.py FAILED [ 50%] tests/test_grdcontour.py::test_grdcontour_slice <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcontour.py FAILED [ 51%] tests/test_grdcontour.py::test_grdcontour_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcontour.py FAILED [ 51%] tests/test_grdcontour.py::test_grdcontour_interval_file_full_opts <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcontour.py FAILED [ 51%] tests/test_grdcontour.py::test_grdcontour_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcontour.py PASSED [ 52%] tests/test_grdcut.py::test_grdcut_file_in_file_out <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcut.py FAILED [ 52%] tests/test_grdcut.py::test_grdcut_file_in_dataarray_out <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcut.py FAILED [ 53%] tests/test_grdcut.py::test_grdcut_dataarray_in_file_out <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcut.py PASSED [ 53%] tests/test_grdcut.py::test_grdcut_dataarray_in_dataarray_out <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcut.py PASSED [ 53%] tests/test_grdcut.py::test_grdcut_dataarray_in_fail <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcut.py PASSED [ 54%] tests/test_grdcut.py::test_grdcut_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdcut.py PASSED [ 54%] tests/test_grdimage.py::test_grdimage <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdimage.py FAILED [ 54%] tests/test_grdimage.py::test_grdimage_slice <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdimage.py FAILED [ 55%] tests/test_grdimage.py::test_grdimage_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdimage.py FAILED [ 55%] tests/test_grdimage.py::test_grdimage_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdimage.py PASSED [ 56%] tests/test_grdinfo.py::test_grdinfo <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdinfo.py FAILED [ 56%] tests/test_grdinfo.py::test_grdinfo_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdinfo.py FAILED [ 56%] tests/test_grdinfo.py::test_grdinfo_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdinfo.py PASSED [ 57%] tests/test_grdtrack.py::test_grdtrack_input_dataframe_and_dataarray <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdtrack.py FAILED [ 57%] tests/test_grdtrack.py::test_grdtrack_input_csvfile_and_dataarray <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdtrack.py FAILED [ 57%] tests/test_grdtrack.py::test_grdtrack_input_dataframe_and_ncfile <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdtrack.py FAILED [ 58%] tests/test_grdtrack.py::test_grdtrack_input_csvfile_and_ncfile <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdtrack.py FAILED [ 58%] tests/test_grdtrack.py::test_grdtrack_wrong_kind_of_points_input <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdtrack.py PASSED [ 59%] tests/test_grdtrack.py::test_grdtrack_wrong_kind_of_grid_input <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdtrack.py PASSED [ 59%] tests/test_grdtrack.py::test_grdtrack_without_newcolname_setting <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdtrack.py PASSED [ 59%] tests/test_grdtrack.py::test_grdtrack_without_outfile_setting <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdtrack.py PASSED [ 60%] tests/test_grdview.py::test_grdview_grid_dataarray <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 60%] tests/test_grdview.py::test_grdview_grid_file_with_region_subset <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 60%] tests/test_grdview.py::test_grdview_wrong_kind_of_grid <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py PASSED [ 61%] tests/test_grdview.py::test_grdview_with_perspective <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 61%] tests/test_grdview.py::test_grdview_with_perspective_and_zscale <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 62%] tests/test_grdview.py::test_grdview_with_perspective_and_zsize <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 62%] tests/test_grdview.py::test_grdview_with_cmap_for_image_plot <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 62%] tests/test_grdview.py::test_grdview_with_cmap_for_surface_monochrome_plot <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 63%] tests/test_grdview.py::test_grdview_with_cmap_for_perspective_surface_plot <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 63%] tests/test_grdview.py::test_grdview_on_a_plane <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 63%] tests/test_grdview.py::test_grdview_on_a_plane_with_colored_frontal_facade <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 64%] tests/test_grdview.py::test_grdview_with_perspective_and_zaxis_frame <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 64%] tests/test_grdview.py::test_grdview_surface_plot_styled_with_contourpen <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 65%] tests/test_grdview.py::test_grdview_surface_mesh_plot_styled_with_meshpen <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 65%] tests/test_grdview.py::test_grdview_on_a_plane_styled_with_facadepen <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 65%] tests/test_grdview.py::test_grdview_drapegrid_dataarray <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py FAILED [ 66%] tests/test_grdview.py::test_grdview_wrong_kind_of_drapegrid <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_grdview.py PASSED [ 66%] tests/test_helpers.py::test_data_kind_fails[None-None-None] <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 66%] tests/test_helpers.py::test_data_kind_fails[data.txt-x1-y1] <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 67%] tests/test_helpers.py::test_data_kind_fails[data.txt-x2-None] <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 67%] tests/test_helpers.py::test_data_kind_fails[data.txt-None-y3] <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 68%] tests/test_helpers.py::test_data_kind_fails[None-x4-None] <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 68%] tests/test_helpers.py::test_data_kind_fails[None-None-y5] <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 68%] tests/test_helpers.py::test_unique_name <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 69%] tests/test_helpers.py::test_kwargs_to_strings_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 69%] tests/test_helpers.py::test_kwargs_to_strings_no_bools <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 69%] tests/test_helpers.py::test_gmttempfile <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 70%] tests/test_helpers.py::test_gmttempfile_unique <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 70%] tests/test_helpers.py::test_gmttempfile_prefix_suffix <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 71%] tests/test_helpers.py::test_gmttempfile_read <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_helpers.py PASSED [ 71%] tests/test_image.py::test_image <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_image.py PASSED [ 71%] tests/test_info.py::test_info <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_info.py PASSED [ 72%] tests/test_info.py::test_info_per_column <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_info.py PASSED [ 72%] tests/test_info.py::test_info_spacing <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_info.py PASSED [ 72%] tests/test_info.py::test_info_per_column_spacing <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_info.py PASSED [ 73%] tests/test_info.py::test_info_nearest_multiple <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_info.py PASSED [ 73%] tests/test_info.py::test_info_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_info.py PASSED [ 74%] tests/test_legend.py::test_legend_position <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_legend.py PASSED [ 74%] tests/test_legend.py::test_legend_default_position <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_legend.py PASSED [ 74%] tests/test_legend.py::test_legend_entries <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_legend.py FAILED [ 75%] tests/test_legend.py::test_legend_specfile <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_legend.py PASSED [ 75%] tests/test_legend.py::test_legend_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_legend.py PASSED [ 75%] tests/test_logo.py::test_logo <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_logo.py PASSED [ 76%] tests/test_logo.py::test_logo_on_a_map <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_logo.py PASSED [ 76%] tests/test_logo.py::test_logo_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_logo.py PASSED [ 77%] tests/test_makecpt.py::test_makecpt_to_plot_points <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py PASSED [ 77%] tests/test_makecpt.py::test_makecpt_to_plot_grid <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 77%] tests/test_makecpt.py::test_makecpt_to_plot_grid_scaled_with_series <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 78%] tests/test_makecpt.py::test_makecpt_output_to_cpt_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py PASSED [ 78%] tests/test_makecpt.py::test_makecpt_blank_output <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py PASSED [ 78%] tests/test_makecpt.py::test_makecpt_invalid_output <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py PASSED [ 79%] tests/test_makecpt.py::test_makecpt_truncated_to_zlow_zhigh <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 79%] tests/test_makecpt.py::test_makecpt_truncated_at_zlow_only <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 80%] tests/test_makecpt.py::test_makecpt_truncated_at_zhigh_only <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 80%] tests/test_makecpt.py::test_makecpt_reverse_color_only <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 80%] tests/test_makecpt.py::test_makecpt_reverse_zsign_only <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 81%] tests/test_makecpt.py::test_makecpt_reverse_color_and_zsign <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 81%] tests/test_makecpt.py::test_makecpt_continuous <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_makecpt.py FAILED [ 81%] tests/test_plot.py::test_plot_red_circles <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 82%] tests/test_plot.py::test_plot_fail_no_data <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 82%] tests/test_plot.py::test_plot_fail_size_color <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 83%] tests/test_plot.py::test_plot_projection <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 83%] tests/test_plot.py::test_plot_colors <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 83%] tests/test_plot.py::test_plot_sizes <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 84%] tests/test_plot.py::test_plot_colors_sizes <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 84%] tests/test_plot.py::test_plot_colors_sizes_proj <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 84%] tests/test_plot.py::test_plot_matrix <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 85%] tests/test_plot.py::test_plot_matrix_color <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 85%] tests/test_plot.py::test_plot_from_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 86%] tests/test_plot.py::test_plot_vectors <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 86%] tests/test_plot.py::test_plot_lines_with_arrows <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 86%] tests/test_plot.py::test_plot_scalar_xy <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_plot.py PASSED [ 87%] tests/test_psconvert.py::test_psconvert <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_psconvert.py PASSED [ 87%] tests/test_psconvert.py::test_psconvert_twice <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_psconvert.py PASSED [ 87%] tests/test_psconvert.py::test_psconvert_int_options <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_psconvert.py PASSED [ 88%] tests/test_psconvert.py::test_psconvert_aliases <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_psconvert.py PASSED [ 88%] tests/test_session_management.py::test_begin_end <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_session_management.py PASSED [ 89%] tests/test_session_management.py::test_gmt_compat_6_is_applied <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_session_management.py PASSED [ 89%] tests/test_sphinx_gallery.py::test_pygmtscraper <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_sphinx_gallery.py SKIPPED [ 89%] tests/test_surface.py::test_surface_input_file <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_surface.py PASSED [ 90%] tests/test_surface.py::test_surface_input_data_array <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_surface.py PASSED [ 90%] tests/test_surface.py::test_surface_input_xyz <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_surface.py PASSED [ 90%] tests/test_surface.py::test_surface_input_xy_no_z <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_surface.py PASSED [ 91%] tests/test_surface.py::test_surface_wrong_kind_of_input <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_surface.py PASSED [ 91%] tests/test_surface.py::test_surface_with_outfile_param <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_surface.py PASSED [ 92%] tests/test_surface.py::test_surface_short_aliases <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_surface.py PASSED [ 92%] tests/test_text.py::test_text_single_line_of_text <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 92%] tests/test_text.py::test_text_multiple_lines_of_text <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 93%] tests/test_text.py::test_text_without_text_input <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 93%] tests/test_text.py::test_text_input_single_filename <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 93%] tests/test_text.py::test_text_input_remote_filename <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 94%] tests/test_text.py::test_text_input_multiple_filenames <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 94%] tests/test_text.py::test_text_nonexistent_filename <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 95%] tests/test_text.py::test_text_position <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 95%] tests/test_text.py::test_text_xy_with_position_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 95%] tests/test_text.py::test_text_position_offset_with_line <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 96%] tests/test_text.py::test_text_angle_30 <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 96%] tests/test_text.py::test_text_font_bold <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 96%] tests/test_text.py::test_text_fill <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 97%] tests/test_text.py::test_text_pen <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 97%] tests/test_text.py::test_text_round_clearance <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 98%] tests/test_text.py::test_text_justify_bottom_right_and_top_left <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 98%] tests/test_text.py::test_text_justify_parsed_from_textfile <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 98%] tests/test_text.py::test_text_angle_font_justify_from_textfile <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_text.py PASSED [ 99%] tests/test_which.py::test_which <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_which.py PASSED [ 99%] tests/test_which.py::test_which_fails <- ../../../../../anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/tests/test_which.py PASSED [100%] ============================================================================================================================ FAILURES ============================================================================================================================= _______________________________________________________________________________________________________ [doctest] pygmt.clib.conversion.dataarray_to_matrix _______________________________________________________________________________________________________ 042 If the grid has more than two dimensions or variable grid spacing. 043 044 Examples 045 -------- 046 047 >>> from pygmt.datasets import load_earth_relief 048 >>> # Use the global Earth relief grid with 1 degree spacing 049 >>> grid = load_earth_relief(resolution='01d') 050 >>> matrix, region, inc = dataarray_to_matrix(grid) 051 >>> print(region) Expected: [-180.0, 180.0, -90.0, 90.0] Got: [-179.5, 179.5, -89.5, 89.5] /Users/locupe/anaconda2/envs/pygmt/lib/python3.8/site-packages/pygmt/clib/conversion.py:51: DocTestFailure ______________________________________________________________________________________________________________ [doctest] pygmt.clib.session.Session _______________________________________________________________________________________________________________ 093 -------- 094 095 >>> from pygmt.datasets import load_earth_relief 096 >>> from pygmt.helpers import GMTTempFile 097 >>> grid = load_earth_relief() 098 >>> type(grid) 099System information
Please paste the output of
python -c "import pygmt; pygmt.show_versions()"
: