Skip to content

Commit 5c989a4

Browse files
authored
cut breaking check over to azpysdk from tox (#44215)
1 parent cef6368 commit 5c989a4

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

eng/pipelines/templates/steps/run_breaking_changes.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,16 @@ steps:
88
- task: PythonScript@0
99
displayName: 'Run Breaking Changes'
1010
inputs:
11-
scriptPath: 'scripts/devops_tasks/dispatch_tox.py'
11+
scriptPath: 'eng/scripts/dispatch_checks.py'
1212
arguments: >-
1313
"$(TargetingString)"
1414
--mark_arg="${{ parameters.TestMarkArgument }}"
1515
--service="${{ parameters.ServiceDirectory }}"
16-
--toxenv="breaking"
16+
--checks="breaking"
1717
--disable-compatibility-filter
1818
--disablecov
19-
env: ${{ parameters.EnvVars }}
19+
env:
20+
TOX_PIP_IMPL: "uv"
21+
VIRTUAL_ENV: ""
22+
PYTHONHOME: ""
2023
condition: and(succeededOrFailed(), ne(variables['Skip.BreakingChanges'],'true'))

0 commit comments

Comments
 (0)