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 5bb20c1 commit 4d63629Copy full SHA for 4d63629
test/runtests.jl
@@ -40,9 +40,9 @@ end
40
rname = "repo-with-large-file-storage"
41
@test !isdir(rname)
42
@test !isfile(joinpath(rname, "LargeFile.zip"))
43
- run(`$(git()) clone https://github.com/Apress/repo-with-large-file-storage`)
44
- run(`$(git()) -C $rname lfs install --local`)
45
- run(`$(git()) -C $rname lfs pull`)
+ run(`$(git()) clone --quiet https://github.com/Apress/repo-with-large-file-storage`)
+ run(pipeline(`$(git()) -C $rname lfs install --local`; stdout=devnull))
+ run(pipeline(`$(git()) -C $rname lfs pull`; stdout=devnull))
46
@test isdir(rname)
47
@test isfile(joinpath(rname, "LargeFile.zip"))
48
# Test filesize to make sure we got real file and not small LFS pointer file
0 commit comments