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:
6
6
COVERALLS_GIT_COMMIT : $(Build.SourceVersion)
7
7
COVERALLS_SERVICE_JOB_ID : $(Build.BuildId)
8
8
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
11
11
# python.311: 3.11.x
12
12
# PythonCoverallsToken: get this from Azure
13
13
60
60
pip install black==22.3.0
61
61
displayName: 'Install dependencies'
62
62
63
+ - script : ' black --check libraries'
64
+ displayName : ' Check Black compliant'
65
+
66
+ - script : ' pylint --rcfile=.pylintrc libraries'
67
+ displayName : Pylint
68
+
63
69
- script : |
64
70
pip install pytest
65
71
pip install pytest-cov
80
86
testResultsFiles : ' **/test-results.$(PYTHON_VERSION).xml'
81
87
testRunTitle : ' Python $(PYTHON_VERSION)'
82
88
83
- - script : ' black --check libraries'
84
- displayName : ' Check Black compliant'
85
-
86
- - script : ' pylint --rcfile=.pylintrc libraries'
87
- displayName : Pylint
88
-
89
89
- script : ' COVERALLS_REPO_TOKEN=$(PythonCoverallsToken) coveralls'
90
90
displayName : ' Push test results to coveralls https://coveralls.io/github/microsoft/botbuilder-python'
91
91
continueOnError : true
You can’t perform that action at this time.
0 commit comments