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
13 changed files with 403 additions and 117 deletions
Showing only changes of commit ca5835c58e - Show all commits

View File

@@ -113,7 +113,10 @@ jobs:
make -j$(nproc)
make check || true
lcov --capture --directory . --output-file /coverage/coverage.info --ignore-errors inconsistent
lcov --remove /coverage/coverage.info "/usr/*" "*/tests/*" --output-file /coverage/coverage.info --ignore-errors inconsistent
lcov --remove /coverage/coverage.info \
"/usr/include/*" "/usr/lib/*" "*/tests/*" \
--output-file /coverage/coverage.info \
--ignore-errors inconsistent,empty
'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4