Skip to content

Commit 27f2ad7

Browse files
committed
Removed reports folder and added reports to gitignore, added upload-artifact to test_and_deploy workflow
1 parent 26c91e4 commit 27f2ad7

File tree

15 files changed

+9
-735
lines changed

15 files changed

+9
-735
lines changed

.github/workflows/test_and_deploy.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,14 @@ jobs:
4848
- name: Test with tox
4949
run: python -m tox
5050

51+
- name: Upload pytest test results
52+
uses: actions/upload-artifact@v3
53+
with:
54+
name: pytest-results-${{ matrix.python-version }}
55+
path: reports/fig-comparison-${{ matrix.python-version }}.html
56+
# Use always() to always run this step to publish test results when there are test failures
57+
if: ${{ always() }}
58+
5159
- name: Coverage
5260
uses: codecov/codecov-action@v2
5361

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ pip-delete-this-directory.txt
3737
# Unit test / coverage reports
3838
htmlcov/
3939
.tox/
40+
report/
4041
.coverage
4142
.coverage.*
4243
.cache

src/napari_matplotlib/reports/extra.js

Lines changed: 0 additions & 209 deletions
This file was deleted.

0 commit comments

Comments
 (0)