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

Name this version v0.1
Author: xaizek
Author date (UTC): 2017-01-09 13:15
Committer name: xaizek
Committer date (UTC): 2017-01-09 17:01
Parent(s): 3ee3a3b6366e178575ad0a08b9c8b97e3ae8812c
Signing key: 99DC5E4DB05F6BE2
Tree: 20b9bf0c21a6966ca160fb258a8cfe1cc7985d20
File Lines added Lines deleted
Makefile 1 0
README.md 1 1
docs/uncov.1 1 1
src/main.cpp 1 1
uncov-gcov 7 1
File Makefile changed (mode: 100644) (index 35adf64..8d876cd)
... ... docs/uncov.1: force | $(out_dir)/docs
117 117 pandoc -V title=uncov \ pandoc -V title=uncov \
118 118 -V section=1 \ -V section=1 \
119 119 -V app=uncov \ -V app=uncov \
120 -V footer="uncov v0.1" \
120 121 -V date="$$(date +'%B %d, %Y')" \ -V date="$$(date +'%B %d, %Y')" \
121 122 -V author='xaizek <xaizek@openmailbox.org>' \ -V author='xaizek <xaizek@openmailbox.org>' \
122 123 -s -o $@ $(sort $(wildcard docs/*.md)) -s -o $@ $(sort $(wildcard docs/*.md))
File README.md changed (mode: 100644) (index b0f451c..619e3f8)
1 **uncov**, _2016 – 2017_
1 **uncov**, _v0.1_, _2016 – 2017_
2 2
3 3 _This file last updated on 09 January, 2017_ _This file last updated on 09 January, 2017_
4 4
File docs/uncov.1 changed (mode: 100644) (index 9979dda..f1064cc)
1 1 .\" Automatically generated by Pandoc 1.17.0.3 .\" Automatically generated by Pandoc 1.17.0.3
2 2 .\" .\"
3 .TH "uncov" "1" "January 08, 2017" "" ""
3 .TH "uncov" "1" "January 09, 2017" "uncov v0.1" ""
4 4 .hy .hy
5 5 .SH NAME .SH NAME
6 6 .PP .PP
File src/main.cpp changed (mode: 100644) (index 58471ab..f3081b9)
... ... main(int argc, char *argv[])
57 57 } }
58 58
59 59 if (invocation.shouldPrintVersion()) { if (invocation.shouldPrintVersion()) {
60 std::cout << "uncov\n";
60 std::cout << "uncov v0.1\n";
61 61 return EXIT_SUCCESS; return EXIT_SUCCESS;
62 62 } }
63 63
File uncov-gcov changed (mode: 100755) (index 085c624..beb9db3)
... ... _SKIP_DIRS = set(['.git', '.hg', '.svn', 'deps'])
49 49
50 50
51 51 def create_args(params): def create_args(params):
52 parser = argparse.ArgumentParser('uncov')
52 parser = argparse.ArgumentParser('uncov-gcov')
53 parser.add_argument('-v', '--version', action='store_true',
54 help='print version information')
53 55 parser.add_argument('--verbose', action='store_true', parser.add_argument('--verbose', action='store_true',
54 56 help='print verbose messages') help='print verbose messages')
55 57 parser.add_argument('--dryrun', action='store_true', parser.add_argument('--dryrun', action='store_true',
 
... ... def run():
494 496
495 497 args = create_args(sys.argv[1:]) args = create_args(sys.argv[1:])
496 498
499 if args.version:
500 print('uncov-gcov v0.1')
501 exit(0)
502
497 503 if args.verbose: if args.verbose:
498 504 print('encodings: {}'.format(args.encodings)) print('encodings: {}'.format(args.encodings))
499 505
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