File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
eng/pipelines/templates/steps Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 11parameters :
22 ServiceDirectory : ' '
33 TestMarkArgument : ' '
4+ EnvVars : {}
45 AdditionalTestArgs : ' '
56
67# Please use `$(TargetingString)` to refer to the python packages glob string. This variable is set from resolve-package-targeting.yml.
@@ -10,15 +11,14 @@ steps:
1011 - task : PythonScript@0
1112 displayName : ' Run Pylint'
1213 inputs :
13- scriptPath : ' eng/ scripts/dispatch_checks .py'
14+ scriptPath : ' scripts/devops_tasks/dispatch_tox .py'
1415 arguments : >-
1516 "$(TargetingString)"
17+ --mark_arg="${{ parameters.TestMarkArgument }}"
1618 --service="${{ parameters.ServiceDirectory }}"
17- --checks="pylint"
19+ --toxenv="pylint"
20+ --disablecov
1821 --filter-type="Omit_management"
1922 ${{ parameters.AdditionalTestArgs }}
20- env :
21- TOX_PIP_IMPL : " uv"
22- VIRTUAL_ENV : " "
23- PYTHONHOME : " "
24- condition : and(succeededOrFailed(), ne(variables['Skip.Pylint'],'true'))
23+ env : ${{ parameters.EnvVars }}
24+ condition : and(succeededOrFailed(), ne(variables['Skip.Pylint'],'true'))
You can’t perform that action at this time.
0 commit comments