xaizek / uncov (License: AGPLv3+) (since 2018-12-07)
Uncov(er) is a tool that collects and processes code coverage reports.
Commit 575c10c42e15106d33a46d2f2a7cf12b010b9753

Ignore .deps/ by new-gcovi subcommand
Author: xaizek
Author date (UTC): 2018-11-19 14:32
Committer name: xaizek
Committer date (UTC): 2018-11-19 14:32
Parent(s): e546bdc711f8c8d7a12a98014a45b2e3df42db20
Signing key: 99DC5E4DB05F6BE2
Tree: a4fbffbcf040ebe6b58b8c9c0095a6b278c94a55
File Lines added Lines deleted
src/GcovImporter.cpp 2 1
File src/GcovImporter.cpp changed (mode: 100644) (index 1d8d670..bd989ee)
... ... GcovImporter::GcovImporter(const std::string &root,
59 59 ".m", ".mm", ".m", ".mm",
60 60 }; };
61 61 std::unordered_set<std::string> skipDirs = { std::unordered_set<std::string> skipDirs = {
62 ".git", ".hg", ".svn",
62 ".git", ".hg", ".svn", // Various version control systems.
63 ".deps" // Dependency tracking of automake.
63 64 }; };
64 65
65 66 std::vector<std::string> cmd = { std::vector<std::string> cmd = {
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/uncov

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/uncov

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master