diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index e4135204..30ca1edb 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -70,7 +70,14 @@ jobs: run: | docker exec coordinator coverage run manage.py test docker exec coordinator coverage report + docker exec coordinator coverage html env: LNVENDOR: ${{ matrix.ln-vendor }} DEVELOPMENT: True - USE_TOR: False \ No newline at end of file + USE_TOR: False + + - name: 'Upload coverage report' + uses: actions/upload-artifact@v2 + with: + name: coverage-report + path: htmlcov/ \ No newline at end of file