From b1b19d702ca60e75b9554d55c393363827acc422 Mon Sep 17 00:00:00 2001 From: Reckless_Satoshi Date: Wed, 29 Nov 2023 11:26:09 +0000 Subject: [PATCH] Add coverage report artifact upload --- .github/workflows/integration-tests.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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