Skip to content

Commit 0fa053d

Browse files
committed
Fix tests -- should be against code, not just python
1 parent 27a5680 commit 0fa053d

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci_hardware_options.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
secrets: inherit
5050

5151
test-options:
52-
# For efficiency, skip this workflow if there were no Python file changes.
52+
# For efficiency, skip this workflow if there were no code file changes.
5353
if: >-
54-
${{needs.find-changes.outputs.python == 'true'
54+
${{needs.find-changes.outputs.code == 'true'
5555
|| github.event_name == 'workflow_dispatch'}}
5656
name: Test ${{matrix.hardware_opt}} + ${{matrix.parallel_opt}}
5757
needs: find-changes

.github/workflows/ci_sanitizer_tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ jobs:
4949
secrets: inherit
5050

5151
sanitizer-tests:
52-
# For efficiency, skip this workflow if there were no Python file changes.
52+
# For efficiency, skip this workflow if there were no code file changes.
5353
if: >-
54-
${{needs.find-changes.outputs.python == 'true'
54+
${{needs.find-changes.outputs.code == 'true'
5555
|| github.event_name == 'workflow_dispatch'}}
5656
name: Test with sanitizers
5757
needs: find-changes

0 commit comments

Comments
 (0)