CI: only run backend lints once, not in all test environments (#3960)

* CI: only run backend lints once, not in all test environments

* Add needses
This commit is contained in:
Aarni Koskela 2023-04-26 22:41:06 +03:00 committed by GitHub
parent 88a2b20997
commit 37d52a753c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 52 additions and 15 deletions

View File

@ -15,6 +15,7 @@ env:
jobs:
client-test:
needs: [client-lint]
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
@ -56,8 +57,30 @@ jobs:
- name: Tests
shell: bash
run: |
bash scripts/ci.sh
bash scripts/test.sh
client-lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: client/python
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: pip
cache-dependency-path: |
requirements.txt
test/requirements.txt
- name: Install Client
run: |
pip install -e .
pip install -r test/requirements.txt
- name: Lint
run: bash scripts/lint.sh
test:
needs: [lint]
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]
@ -115,14 +138,6 @@ jobs:
if: ${{ matrix.python-version == '3.7' }}
run: |
pip install -r test/requirements-37.txt
- name: Lint
shell: bash
run: |
bash scripts/lint_backend.sh
- name: Typecheck
shell: bash
run: |
bash scripts/type_check_backend.sh
- name: Build frontend
shell: bash
run: |
@ -137,4 +152,21 @@ jobs:
run: |
coverage run -m pytest -m "${{ matrix.test-type }}" --ignore=client
coverage xml
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Python
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: pip
cache-dependency-path: |
requirements.txt
test/requirements.txt
- name: Install Test Dependencies
run: pip install -e . -r test/requirements.txt
- name: Lint
run: bash scripts/lint_backend.sh
- name: Typecheck
run: bash scripts/type_check_backend.sh

View File

@ -28,7 +28,7 @@ No changes to highlight.
## Testing and Infrastructure Changes:
No changes to highlight.
- CI: Python backend lint is only run once, by [@akx](https://github.com/akx) in [PR 3960](https://github.com/gradio-app/gradio/pull/3960)
## Breaking Changes:

View File

@ -1,12 +1,10 @@
#!/bin/bash
set -e
cd "$(dirname ${0})/.."
echo "Linting..."
ruff test gradio_client
black --check test gradio_client
pyright gradio_client/*.py
echo "Testing..."
python -m pytest test
echo "Type checking the client library with pyright"
pyright gradio_client/*.py

View File

@ -0,0 +1,7 @@
#!/bin/bash
set -e
cd "$(dirname ${0})/.."
echo "Testing..."
python -m pytest test