Skip to content

Commit ca661f9

Browse files
authored
Merge pull request #5083 from ARMmbed/release-candidate
Release candidate for mbed-os-5.5.7
2 parents 98ba8ac + 7189e68 commit ca661f9

File tree

216 files changed

+4378
-1928
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+4378
-1928
lines changed

.travis.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
python:
22
- "2.7"
3-
3+
group: deprecated-2017Q3
44
script:
55
- mkdir BUILD
66
# Assert that the Doxygen build produced no warnings.
@@ -19,14 +19,13 @@ script:
1919
- |
2020
find -name "*.s" | tee BUILD/badasm | sed -e "s/^/Bad Assembler file name found: /" && [ ! -s BUILD/badasm ]
2121
- make -C events/equeue test clean
22-
- PYTHONPATH=. python tools/test/config_test/config_test.py
23-
- PYTHONPATH=. python tools/test/build_api/build_api_test.py
24-
- PYTHONPATH=. python tools/test/targets/target_test.py
25-
- python tools/test/pylint.py
26-
- py.test tools/test/toolchains/api.py
27-
- python tools/test/memap/memap_test.py
28-
- python tools/project.py -S
29-
- python tools/build_travis.py
22+
- PYTHONPATH=. coverage run -a -m pytest tools/test
23+
- python2 tools/test/pylint.py
24+
- coverage run -a tools/project.py -S
25+
- python2 tools/build_travis.py
26+
- coverage html
27+
after_success:
28+
- coveralls
3029
before_install:
3130
- sudo add-apt-repository -y ppa:team-gcc-arm-embedded/ppa
3231
- sudo add-apt-repository -y ppa:libreoffice/libreoffice-4-2
@@ -42,3 +41,5 @@ install:
4241
- pip install pylint
4342
- pip install hypothesis
4443
- pip install mock
44+
- pip install coverage
45+
- pip install coveralls

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ We run continuous integration on all of our branches and pull requests to verify
2121
- Master branch [![Master Branch CI Badge](https://travis-ci.org/ARMmbed/mbed-os.svg?branch=master)](https://travis-ci.org/ARMmbed/mbed-os)
2222
- Latest release [![Latest Tag CI Badge](https://travis-ci.org/ARMmbed/mbed-os.svg?branch=latest)](https://travis-ci.org/ARMmbed/mbed-os/branches)
2323

24+
Tools coverage [![Coverage Status](https://coveralls.io/repos/github/ARMmbed/mbed-os/badge.svg?branch=master)](https://coveralls.io/github/ARMmbed/mbed-os?branch=master)
25+
2426
## Getting Started for Developers
2527

2628
You need [mbed CLI](https://github.com/ARMmbed/mbed-cli) to build mbed OS. For more details, read the [mbed OS Handbook](https://docs.mbed.com/docs/mbed-os-handbook/en/latest/).

0 commit comments

Comments
 (0)