WIP: feat(tests): enable parallel execution of functional tests #68

Closed
jabber.developer2 wants to merge 15 commits from feat/parallel-functional-tests into master
14 changed files with 408 additions and 117 deletions
Showing only changes of commit f6b621ad40 - Show all commits

View File

@@ -113,10 +113,13 @@ jobs:
make -j$(nproc)
make check || true
make check-functional-parallel || true
lcov --capture --directory . --output-file /coverage/coverage.info --ignore-errors inconsistent
lcov --capture --directory . --output-file /coverage/coverage.info \
--rc lcov_branch_coverage=1 \
--ignore-errors inconsistent
lcov --remove /coverage/coverage.info \
"/usr/include/*" "*/tests/*" \
--output-file /coverage/coverage.info \
--rc lcov_branch_coverage=1 \
--ignore-errors inconsistent,empty,unused
'
- name: Upload coverage to Codecov

1
.gitignore vendored
View File

@@ -107,3 +107,4 @@ breaks
*.tar.*
*.zip
*.log*
coverage/