Skip to content

Commit d720cdf

Browse files
chore: Skip tests on doc updates (#4834)
* feat: Make entity value_type mandatory with deprecation warning - Add deprecation warning when value_type is not specified for an entity - Add test cases to verify deprecation warning behavior - Prepare for making value_type mandatory in next release Issue: #4670 Co-Authored-By: Francisco Javier Arceo <arceofrancisco@gmail.com> Signed-off-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * style: Fix import sorting in entity files - Reorder imports according to PEP8 - Group standard library imports together - Fix ruff linting issues Co-Authored-By: Francisco Javier Arceo <arceofrancisco@gmail.com> Signed-off-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> * chore: Skip tests for community/docs/examples paths Co-Authored-By: Francisco Javier Arceo <arceofrancisco@gmail.com> --------- Signed-off-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
1 parent b8ede2a commit d720cdf

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

.github/workflows/pr_integration_tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ on:
66
- opened
77
- synchronize
88
- labeled
9+
paths-ignore:
10+
- 'community/**'
11+
- 'docs/**'
12+
- 'examples/**'
913

1014
# concurrency is currently broken, see details https://github.com/actions/runner/issues/1532
1115
#concurrency:

.github/workflows/pr_local_integration_tests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
- opened
88
- synchronize
99
- labeled
10+
paths-ignore:
11+
- 'community/**'
12+
- 'docs/**'
13+
- 'examples/**'
1014

1115
jobs:
1216
integration-test-python-local:

.github/workflows/smoke_tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: smoke-tests
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
paths-ignore:
6+
- 'community/**'
7+
- 'docs/**'
8+
- 'examples/**'
49
jobs:
510
unit-test-python:
611
runs-on: ${{ matrix.os }}

.github/workflows/unit_tests.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
name: unit-tests
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
paths-ignore:
6+
- 'community/**'
7+
- 'docs/**'
8+
- 'examples/**'
49
jobs:
510
unit-test-python:
611
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)