Skip to content

Commit

Permalink
Silence other tests
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Feb 16, 2023
1 parent da30f30 commit 1b5d887
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ end
withtempdir() do tmp_dir
@test !isdir("Git.jl")
@test !isfile(joinpath("Git.jl", "Project.toml"))
run(`$(git()) clone https://github.com/JuliaVersionControl/Git.jl`)
run(`$(git()) clone --quiet https://github.com/JuliaVersionControl/Git.jl`)
@test isdir("Git.jl")
@test isfile(joinpath("Git.jl", "Project.toml"))
end

withtempdir() do tmp_dir
@test !isdir("Git.jl")
@test !isfile(joinpath("Git.jl", "Project.toml"))
run(git(["clone", "https://github.com/JuliaVersionControl/Git.jl"]))
run(git(["clone", "--quiet", "https://github.com/JuliaVersionControl/Git.jl"]))
@test isdir("Git.jl")
@test isfile(joinpath("Git.jl", "Project.toml"))
end
Expand Down

0 comments on commit 1b5d887

Please sign in to comment.