File: run_breaking_changes.yml

package info (click to toggle)
python-azure 20260203%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 793,600 kB
  • sloc: python: 6,552,618; ansic: 804; javascript: 287; sh: 204; makefile: 198; xml: 109
file content (23 lines) | stat: -rw-r--r-- 754 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
parameters:
  ServiceDirectory: ''
  TestMarkArgument: ''
  EnvVars: {}

# Please use `$(TargetingString)` to refer to the python packages glob string. This variable is set from resolve-package-targeting.yml.
steps:
  - task: PythonScript@0
    displayName: 'Run Breaking Changes'
    inputs:
      scriptPath: 'eng/scripts/dispatch_checks.py'
      arguments: >-
        "$(TargetingString)"
        --mark_arg="${{ parameters.TestMarkArgument }}"
        --service="${{ parameters.ServiceDirectory }}"
        --checks="breaking"
        --disable-compatibility-filter
        --disablecov
    env:
      TOX_PIP_IMPL: "uv"
      VIRTUAL_ENV: ""
      PYTHONHOME: ""
    condition: and(succeededOrFailed(), ne(variables['Skip.BreakingChanges'],'true'))