From 2b8e97e5451985f8e8e7c109c36b79f7e6d60476 Mon Sep 17 00:00:00 2001 From: coldsofttech Date: Sat, 27 Apr 2024 19:01:23 +0100 Subject: [PATCH] Initial Release --- .github/workflows/pipeline.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 4594627..e1a8c8d 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -67,7 +67,14 @@ jobs: - name: Run Tests run: | - pytest tests -vv -rEPW -o pytest_collection_order=alphabetical --cache-clear --color=yes + pytest tests -vv -rEPW -o pytest_collection_order=alphabetical --cache-clear --color=yes --html=pytest_results.html --self-contained-html + + - name: Upload Report + if: ${{ always() }} + uses: actions/upload-artifact@v4 + with: + name: test-${{ matrix.os }}-${{ matrix.python-version }} + path: pytest_results.html test_ubuntu_gnome: name: Test GNOME @@ -91,9 +98,7 @@ jobs: - name: Install Dependencies run: | python -m pip install --upgrade pip - pip uninstall -y pytest pip install pytest - pip uninstall -y pytest-html pip install pytest-html pip install -r requirements.txt