Skip to content

Commit

Permalink
Initial Release
Browse files Browse the repository at this point in the history
  • Loading branch information
coldsofttech committed Apr 27, 2024
1 parent 87700e0 commit 2b8e97e
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 2b8e97e

Please sign in to comment.