Skip to content

Validate plugins removed from hub before marking them stale (#1301) #1030

Validate plugins removed from hub before marking them stale (#1301)

Validate plugins removed from hub before marking them stale (#1301) #1030

Workflow file for this run

# Workflow for running backend tests for PRs and main branch
name: Backend Tests
on:
push:
branches:
- main
paths:
- 'backend/**'
- 'napari-hub-commons/**'
- '.github/workflows/backend-tests.yml'
pull_request:
branches:
- '**'
paths:
- 'backend/**'
- 'napari-hub-commons/**'
- '.github/workflows/backend-tests.yml'
defaults:
run:
working-directory: backend/
jobs:
# Runs pytest for backend code
tests:
name: Unit test with pytest
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Cache Python environment
uses: actions/cache@v3
id: pip-cache
with:
path: ${{ env.pythonLocation }}
key: ${{ env.pythonLocation }}-${{ hashFiles('setup.py') }}-${{ hashFiles('dev-requirements.txt') }}
- name: Install dependencies
# need npe2 here to test preview page
run: |
sudo apt install libffi7
pip install --upgrade pip
pip install -r requirements.txt
pip install -r test-requirements.txt
- name: Run unit tests
working-directory: backend
run : |
python -m pytest utils api
lints:
name: Linting with Black
runs-on: ubuntu-20.04
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: "3.9"
- uses: psf/black@stable
with:
options: "--check --diff --color --verbose --extend-exclude '.*/tests/.*'"
version: "~= 23.1.0"
src: "./backend"