File tree Expand file tree Collapse file tree 1 file changed +8
-8
lines changed
Expand file tree Collapse file tree 1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ variables:
66 COVERALLS_GIT_COMMIT : $(Build.SourceVersion)
77 COVERALLS_SERVICE_JOB_ID : $(Build.BuildId)
88 COVERALLS_SERVICE_NAME : python-ci
9- python.37 : 3.7.x
10- python.38 : 3.8.x
9+ python.37 : 3.7
10+ python.38 : 3.8
1111 # python.311: 3.11.x
1212 # PythonCoverallsToken: get this from Azure
1313
6060 pip install black==22.3.0
6161 displayName: 'Install dependencies'
6262
63+ - script : ' black --check libraries'
64+ displayName : ' Check Black compliant'
65+
66+ - script : ' pylint --rcfile=.pylintrc libraries'
67+ displayName : Pylint
68+
6369 - script : |
6470 pip install pytest
6571 pip install pytest-cov
8086 testResultsFiles : ' **/test-results.$(PYTHON_VERSION).xml'
8187 testRunTitle : ' Python $(PYTHON_VERSION)'
8288
83- - script : ' black --check libraries'
84- displayName : ' Check Black compliant'
85-
86- - script : ' pylint --rcfile=.pylintrc libraries'
87- displayName : Pylint
88-
8989 - script : ' COVERALLS_REPO_TOKEN=$(PythonCoverallsToken) coveralls'
9090 displayName : ' Push test results to coveralls https://coveralls.io/github/microsoft/botbuilder-python'
9191 continueOnError : true
You can’t perform that action at this time.
0 commit comments