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 404 additions and 117 deletions
Showing only changes of commit d80092821b - Show all commits

View File

@@ -112,11 +112,12 @@ jobs:
./configure --enable-coverage --enable-otr --enable-pgp --enable-omemo --enable-plugins
make -j$(nproc)
make check || true
make check-functional-parallel || true
lcov --capture --directory . --output-file /coverage/coverage.info --ignore-errors inconsistent
lcov --remove /coverage/coverage.info \
"/usr/include/*" "/usr/lib/*" "*/tests/*" \
"/usr/include/*" "*/tests/*" \
--output-file /coverage/coverage.info \
--ignore-errors inconsistent,empty
--ignore-errors inconsistent,empty,unused
'
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4