From 432a01f7063b9e9777e20c3c10dffc02c6645202 Mon Sep 17 00:00:00 2001 From: Daniel M Date: Wed, 14 Aug 2024 13:46:46 -0400 Subject: [PATCH] test-dragonfly.yml --- .github/workflows/test-dragonfly.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-dragonfly.yml b/.github/workflows/test-dragonfly.yml index 393b3153..4f91837e 100644 --- a/.github/workflows/test-dragonfly.yml +++ b/.github/workflows/test-dragonfly.yml @@ -62,9 +62,13 @@ jobs: run: | poetry run pytest test/${{ matrix.tests }} --html=report-${{ matrix.tests }}.html --self-contained-html -v -m "not slow" + upload-results: + needs: test + runs-on: ubuntu-latest + steps: - name: Collect Tests Result if: always() uses: actions/upload-artifact@v4 with: - name: tests-result-${{ matrix.tests }} - path: report-${{ matrix.tests }}.html + name: tests-result + path: report-*.html