Skip to content

Commit 12339a0

Browse files
committed
Try to get hung test on circle ci to finish
Signed-off-by: Jason T. Brown <[email protected]>
1 parent 22f349f commit 12339a0

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,4 +222,5 @@ workflows:
222222
- it
223223
- itWithoutGdal
224224
- docs
225+
- test
225226
# - staticAnalysis

pyrasterframes/src/main/python/tests/GeotrellisTests.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ def test_write_geotrellis_layer(self):
4141
rf_gt_count = rf_gt.count()
4242
self.assertTrue(rf_gt_count > 0)
4343

44-
rf_gt.show(1)
44+
# maybe CI is unhappy about print / show.
45+
_ = rf_gt.take(1)
4546

4647
shutil.rmtree(dest, ignore_errors=True)
4748

@@ -61,6 +62,7 @@ def test_write_geotrellis_multiband_layer(self):
6162
rf_gt_count = rf_gt.count()
6263
self.assertTrue(rf_gt_count > 0)
6364

64-
rf_gt.show(1)
65+
# maybe CI is unhappy about print / show.
66+
_ = rf_gt.take(1)
6567

6668
shutil.rmtree(dest, ignore_errors=True)

0 commit comments

Comments
 (0)