Skip to content

Commit

Permalink
t.rast.import.netcdf: fix failing tests (#971)
Browse files Browse the repository at this point in the history
* python network

* move to data dir

* Remove accidentally added r.connectivity

* add data dir

* remove semantic label files
  • Loading branch information
ninsbl authored Oct 31, 2023
1 parent 01aba18 commit 82d59ce
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ def test_sentinel_output_created(self):
flags="lo",
input=self.input_sentinel[0],
output=self.output_sentinel,
semantic_labels="semantic_labels_sentinel2.conf",
semantic_labels="data/semantic_labels_sentinel2.conf",
memory=2048,
nprocs=2,
)
Expand Down Expand Up @@ -123,7 +123,7 @@ def test_sentinel_output_appended(self):
flags="lo",
input=self.input_sentinel[0],
output=self.output_sentinel,
semantic_labels="semantic_labels_sentinel2.conf",
semantic_labels="data/semantic_labels_sentinel2.conf",
memory=2048,
nprocs=2,
)
Expand All @@ -132,7 +132,7 @@ def test_sentinel_output_appended(self):
flags="loa",
input=self.input_sentinel[1],
output=self.output_sentinel,
semantic_labels="semantic_labels_sentinel2.conf",
semantic_labels="data/semantic_labels_sentinel2.conf",
memory=2048,
nprocs=2,
)
Expand All @@ -144,7 +144,7 @@ def test_sentinel_input_comma_separated(self):
flags="lo",
input=",".join(self.input_sentinel),
output=self.output_sentinel,
semantic_labels="semantic_labels_sentinel2.conf",
semantic_labels="data/semantic_labels_sentinel2.conf",
memory=2048,
nprocs=2,
)
Expand All @@ -158,7 +158,7 @@ def test_sentinel_input_file(self):
flags="lo",
input=self.input_file,
output=self.output_sentinel,
semantic_labels="semantic_labels_sentinel2.conf",
semantic_labels="data/semantic_labels_sentinel2.conf",
memory=2048,
nprocs=2,
)
Expand All @@ -170,7 +170,7 @@ def test_climate_output_created(self):
flags="lo",
input=self.input_climate,
output=self.output_climate,
semantic_labels="semantic_labels_senorge.conf",
semantic_labels="data/semantic_labels_senorge.conf",
start_time="2021-01-01",
end_time="2021-01-03 12:12:12",
memory=2048,
Expand Down

0 comments on commit 82d59ce

Please sign in to comment.