Only run client tests on client changes (#4595)

This commit is contained in:
Freddy Boulton 2023-06-21 11:12:22 -04:00 committed by GitHub
parent 6a92e19a0d
commit 29de12a7b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -110,7 +110,7 @@ jobs:
python -m pytest -m "${{ matrix.test-type }}"
test:
needs: [changes]
if: needs.changes.outputs.gradio == 'true' || needs.changes.outputs.python-client == 'true' || needs.changes.outputs.workflows == 'true' || needs.changes.outputs.scripts == 'true' || needs.changes.outputs.test == 'true'
if: needs.changes.outputs.gradio == 'true' || needs.changes.outputs.workflows == 'true' || needs.changes.outputs.scripts == 'true' || needs.changes.outputs.test == 'true'
strategy:
matrix:
os: ["ubuntu-latest", "windows-latest"]