Skip to content

Commit 6acbc47

Browse files
committed
mega-melt: fix bug in skipTests.txt generation
We need to append each line to the existing file. Because the melting-pot directory is always newly created, we can just always use >> instead of >, to avoid future bugs resulting from copy-paste, as my mistake today was.
1 parent 162c711 commit 6acbc47

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/run.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@ chmod +x "$meltScript" ||
168168
die "Failed to adjust $meltScript"
169169

170170
# TEMP: Until imagej/imagej-legacy#285 is fixed.
171-
echo "net.imagej/imagej-legacy" > "$skipTestsFile" &&
171+
echo "net.imagej/imagej-legacy" >> "$skipTestsFile" &&
172172

173173
# TEMP: Until saalfeldlab/n5-zarr#11 is merged and released.
174-
echo "org.janelia.saalfeldlab/n5-zarr" > "$skipTestsFile" &&
174+
echo "org.janelia.saalfeldlab/n5-zarr" >> "$skipTestsFile" &&
175175

176176
# com.amazonaws.services.s3.model.AmazonS3Exception: The specified bucket does
177177
# not exist (Service: Amazon S3; Status Code: 404; Error Code: NoSuchBucket;
178178
# Request ID: null; S3 Extended Request ID: null; Proxy: null)
179-
echo "org.janelia.saalfeldlab/n5-aws-s3" > "$skipTestsFile" &&
179+
echo "org.janelia.saalfeldlab/n5-aws-s3" >> "$skipTestsFile" &&
180180

181181
# Error while checking the CLIJ2 installation: null
182182
echo "sc.fiji/labkit-pixel-classification" >> "$skipTestsFile" ||

0 commit comments

Comments
 (0)