diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 9c3acd06a..9911ac59f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -108,7 +108,7 @@ jobs: path: ./.tox key: tox-integration-${{ matrix.test }}-${{ hashFiles('setup.py') }} restore-keys: txo-integration-${{ matrix.test }}- - - run: pip install tox + - run: pip install tox coverage coveralls - run: tox -e ${{ matrix.test }} - name: submit coverage report env: @@ -116,7 +116,7 @@ jobs: COVERALLS_FLAG_NAME: tests-integration-${{ steps.os-name.outputs.lowercase }} COVERALLS_PARALLEL: true run: | - pip install coveralls + coverage combine tests coveralls --service=github diff --git a/tox.ini b/tox.ini index 10d8c1e6a..0b8b7ff90 100644 --- a/tox.ini +++ b/tox.ini @@ -13,4 +13,3 @@ commands = blockchain: coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.blockchain {posargs} datanetwork: coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.datanetwork {posargs} other: coverage run -p --source={envsitepackagesdir}/lbry -m unittest discover -vv integration.other {posargs} - coverage combine