Skip to content

Commit

Permalink
doc: coverage=false is the default (#1114)
Browse files Browse the repository at this point in the history
(cherry picked from commit 896505f, PR #1114)
  • Loading branch information
fredrikekre committed Apr 15, 2019
1 parent 8416d3c commit 6a44a23
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Pkg.jl
Original file line number Diff line number Diff line change
Expand Up @@ -119,9 +119,9 @@ const update = API.up


"""
Pkg.test(; coverage::Bool=true)
Pkg.test(pkg::Union{String, Vector{String}; coverage::Bool=true)
Pkg.test(pkgs::Union{PackageSpec, Vector{PackageSpec}}; coverage::Bool=true)
Pkg.test(; coverage::Bool=false)
Pkg.test(pkg::Union{String, Vector{String}; coverage::Bool=false)
Pkg.test(pkgs::Union{PackageSpec, Vector{PackageSpec}}; coverage::Bool=false)
Run the tests for package `pkg` or if no positional argument is given to `test`,
the current project is tested (which thus needs to be a package).
Expand Down

0 comments on commit 6a44a23

Please sign in to comment.