mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
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:
parent
88a2b20997
commit
37d52a753c
52
.github/workflows/backend.yml
vendored
52
.github/workflows/backend.yml
vendored
@ -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
|
||||
|
@ -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:
|
||||
|
||||
|
@ -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
|
7
client/python/scripts/test.sh
Normal file
7
client/python/scripts/test.sh
Normal file
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
cd "$(dirname ${0})/.."
|
||||
|
||||
echo "Testing..."
|
||||
python -m pytest test
|
Loading…
x
Reference in New Issue
Block a user