Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

r.in.gdal: fix and enable test #3339

Merged
merged 1 commit into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .github/workflows/macos_gunittest.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ exclude =
python/grass/script/testsuite/test_script_doctests.py
python/grass/temporal/testsuite/unittests_temporal_raster_algebra_equal_ts.py
python/grass/temporal/testsuite/unittests_temporal_raster_conditionals_complement_else.py
raster/r.in.gdal/testsuite/test_r_in_gdal.py
raster/r.in.lidar/testsuite/test_base_resolution.sh
raster/r.in.lidar/testsuite/test_base_resolution.sh
raster/r.in.pdal/testsuite/test_r_in_pdal_binning.py
Expand Down
1 change: 0 additions & 1 deletion .gunittest.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ exclude =
python/grass/script/testsuite/test_script_doctests.py
python/grass/temporal/testsuite/unittests_temporal_raster_algebra_equal_ts.py
python/grass/temporal/testsuite/unittests_temporal_raster_conditionals_complement_else.py
raster/r.in.gdal/testsuite/test_r_in_gdal.py
raster/r.in.lidar/testsuite/test_base_resolution.sh
raster/r.in.lidar/testsuite/test_base_resolution.sh
scripts/g.search.modules/testsuite/test_g_search_modules.py
Expand Down
16 changes: 8 additions & 8 deletions raster/r.in.gdal/testsuite/test_r_in_gdal.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,8 +146,8 @@ def test_netCDF_3d_1(self):
# Output of r.info
info_string = """north=228500
south=215000
east=644640
west=629640
east=645000
west=630000
nsres=100
ewres=100
rows=135
Expand Down Expand Up @@ -186,8 +186,8 @@ def test_netCDF_3d_2(self):
# Output of r.info
info_string = """north=228500
south=215000
east=644640
west=629640
east=645000
west=630000
nsres=100
ewres=100
rows=135
Expand Down Expand Up @@ -226,8 +226,8 @@ def test_netCDF_3d_3(self):
# Output of r.info
info_string = """north=228500
south=215000
east=644640
west=629640
east=645000
west=630000
nsres=100
ewres=100
rows=135
Expand Down Expand Up @@ -266,8 +266,8 @@ def test_netCDF_3d_4(self):
# Output of r.info
info_string = """north=228500
south=215000
east=644640
west=629640
east=645000
west=630000
nsres=100
ewres=100
rows=135
Expand Down
Loading