We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf1954c commit 397c579Copy full SHA for 397c579
azure-pipelines.yml
@@ -65,7 +65,7 @@ jobs:
65
displayName: 'Install mbed-os test dependencies'
66
-
67
script: |
68
- pip install --user flake8
+ pip install flake8
69
python -m flake8
70
condition: eq(variables['extraActions'], 'true')
71
displayName: 'Enforce code style'
@@ -99,6 +99,12 @@ jobs:
99
script: "python -m coverage run setup.py test"
100
displayName: "Test mbed-greentea"
101
workingDirectory: 'legacy/mbed-greentea'
102
+ -
103
+ script: |
104
+ python -m coverage combine .coverage legacy/*/.coverage
105
+ python -m coveralls
106
+ condition: eq(variables['extraActions'], 'true')
107
+ displayName: 'Send coverage to coveralls'
108
109
job: Build
110
dependsOn: Test
0 commit comments