From 3f2539de048b331b7df486e854fefa1801c8cbe8 Mon Sep 17 00:00:00 2001 From: Paweł Bylica Date: Tue, 24 Jul 2018 22:27:08 +0200 Subject: Add codecov config --- .circleci/config.yml | 2 +- codecov.yml | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 codecov.yml diff --git a/.circleci/config.yml b/.circleci/config.yml index a2e34b37..e3596d2b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -200,7 +200,7 @@ jobs: command: build/test/soltest -t 'syntaxTest*' -- --no-ipc --testpath test - run: name: Coverage of type checker - command: codecov --flags type_checker --gcov-root build + command: codecov --flags syntax --gcov-root build - run: *run_tests - run: name: Coverage of all diff --git a/codecov.yml b/codecov.yml new file mode 100644 index 00000000..f20980ef --- /dev/null +++ b/codecov.yml @@ -0,0 +1,18 @@ +codecov: + branch: develop +coverage: + range: 70...100 + status: + project: + default: + target: auto + paths: "!test/" + syntax: + target: auto + paths: "libsolidity/analysis" + flags: syntax + tests: + target: auto + paths: "test/" +comment: + layout: "reach, diff, flags" -- cgit