From b4d4acb800ae46286ff92d9cc02ad4202a8d23ac Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Tue, 8 Jun 2021 18:09:20 -0400 Subject: [PATCH] README: Coverage.jl should be listed before CoverageTools.jl (#311) --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 684d7d3..ab4e54a 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,9 @@ Coverage.jl **Memory allocation**: Julia can track how much memory is allocated by each line of your code. This can reveal problems like type instability, or operations that you might have thought were cheap (in terms of memory allocated) but aren't (i.e. accidental copying). ## Comparison of coverage packages -- [CoverageTools.jl](https://github.com/JuliaCI/CoverageTools.jl): core functionality for processing code coverage and memory allocation results + - **[Coverage.jl](https://github.com/JuliaCI/Coverage.jl) (this package): allows you to take coverage results and submit them to online web services such as Codecov.io and Coveralls.io** +- [CoverageTools.jl](https://github.com/JuliaCI/CoverageTools.jl): core functionality for processing code coverage and memory allocation results Most users will want to use [Coverage.jl](https://github.com/JuliaCI/Coverage.jl).