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 1
1
parameters :
2
2
ServiceDirectory : ' '
3
3
TestMarkArgument : ' '
4
+ EnvVars : {}
4
5
AdditionalTestArgs : ' '
5
6
6
7
# 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:
10
11
- task : PythonScript@0
11
12
displayName : ' Run Pylint'
12
13
inputs :
13
- scriptPath : ' eng/ scripts/dispatch_checks .py'
14
+ scriptPath : ' scripts/devops_tasks/dispatch_tox .py'
14
15
arguments : >-
15
16
"$(TargetingString)"
17
+ --mark_arg="${{ parameters.TestMarkArgument }}"
16
18
--service="${{ parameters.ServiceDirectory }}"
17
- --checks="pylint"
19
+ --toxenv="pylint"
20
+ --disablecov
18
21
--filter-type="Omit_management"
19
22
${{ 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