Skip to content

Commit

Permalink
fix lack of test data
Browse files Browse the repository at this point in the history
  • Loading branch information
Czaki committed Feb 22, 2022
1 parent 9622672 commit b3dca92
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
20 changes: 19 additions & 1 deletion .github/workflows/test_napari_repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,20 @@ on:
workflow_dispatch:

jobs:
test_napar:
download_data:
name: Download test data
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- shell: bash
run: bash build_utils/download_data.sh
- name: Upload test data
uses: actions/upload-artifact@v1
with:
name: test_data
path: test_data

test_napari:
name: ${{ matrix.napari_version }} py${{ matrix.python }}
runs-on: ${{ matrix.platform }}
strategy:
Expand Down Expand Up @@ -44,6 +57,11 @@ jobs:
pip install --upgrade pip
pip install setuptools tox tox-gh-actions
- name: Download test data
uses: actions/download-artifact@v1
with:
name: test_data

- name: Test with tox
# run tests using pip install --pre
uses: GabrielBB/xvfb-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_napari_widgets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
- '**'

jobs:
test_napar:
test_napari:
name: ${{ matrix.napari_version }} py${{ matrix.python }}
runs-on: ${{ matrix.platform }}
strategy:
Expand Down

0 comments on commit b3dca92

Please sign in to comment.