build: do not run python tests on ui build (#2987)

`invokeai/frontend/web/dist/**` should not be triggering the full test
suite.
This commit is contained in:
blessedcoolant 2023-03-25 00:54:40 +13:00 committed by GitHub
commit c33d8694bb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -6,7 +6,6 @@ on:
- '!pyproject.toml' - '!pyproject.toml'
- '!invokeai/**' - '!invokeai/**'
- 'invokeai/frontend/web/**' - 'invokeai/frontend/web/**'
- '!invokeai/frontend/web/dist/**'
merge_group: merge_group:
workflow_dispatch: workflow_dispatch:

View File

@ -7,13 +7,11 @@ on:
- 'pyproject.toml' - 'pyproject.toml'
- 'invokeai/**' - 'invokeai/**'
- '!invokeai/frontend/web/**' - '!invokeai/frontend/web/**'
- 'invokeai/frontend/web/dist/**'
pull_request: pull_request:
paths: paths:
- 'pyproject.toml' - 'pyproject.toml'
- 'invokeai/**' - 'invokeai/**'
- '!invokeai/frontend/web/**' - '!invokeai/frontend/web/**'
- 'invokeai/frontend/web/dist/**'
types: types:
- 'ready_for_review' - 'ready_for_review'
- 'opened' - 'opened'