We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8dfe95d commit 05b5c8eCopy full SHA for 05b5c8e
test/REQUIRE
@@ -1,2 +0,0 @@
1
-CodecZlib
2
-CodecZstd
test/runtests.jl
@@ -86,6 +86,8 @@ using Base.Test
86
TranscodingStreams.test_roundtrip_transcode(Identity, Identity)
87
end
88
89
-Pkg.test("CodecZlib")
90
-Pkg.test("CodecZstd")
91
-Pkg.test("CodecBzip2")
+for pkg in ["CodecZlib", "CodecZstd", "CodecBzip2"]
+ if Pkg.installed(pkg) !== nothing
+ Pkg.test(pkg)
92
+ end
93
+end
0 commit comments