Skip to content

Commit 6a34208

Browse files
committed
adjustment to retest backend
1 parent 5211f6f commit 6a34208

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/testing.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
# This output will be 'true' if files in the 'table_related_paths' list changed, 'false' otherwise.
1818
table_paths_changed: ${{ steps.filter.outputs.table_related_paths }}
1919
background_cb_changed: ${{ steps.filter.outputs.background_paths }}
20+
backend_cb_changed: ${{ steps.filter.outputs.backend_paths }}
2021
steps:
2122
- name: Checkout repository
2223
uses: actions/checkout@v4
@@ -37,6 +38,9 @@ jobs:
3738
- 'tests/background_callback/**'
3839
- 'tests/async_tests/**'
3940
- 'requirements/**'
41+
backend_paths:
42+
- 'dash/backend/**'
43+
- 'tests/backend/**'
4044
4145
build:
4246
name: Build Dash Package
@@ -276,7 +280,7 @@ jobs:
276280
needs: [build, changes_filter]
277281
if: |
278282
(github.event_name == 'push' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev')) ||
279-
needs.changes_filter.outputs.backend_tests_changed == 'true'
283+
needs.changes_filter.outputs.backend_cb_changed == 'true'
280284
timeout-minutes: 30
281285
runs-on: ubuntu-latest
282286
strategy:

0 commit comments

Comments
 (0)