File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,6 @@ matrix:
85
85
- doxygen doxyfile_options 2>&1
86
86
# Once Mbed OS has been fixed, enable the full test by replacing the top line with this:
87
87
# - ( ! doxygen doxyfile_options 2>&1 | grep . )
88
-
89
88
# Assert that all binary libraries are named correctly
90
89
# The strange command below asserts that there are exactly 0 libraries
91
90
# that do not start with lib
@@ -106,10 +105,20 @@ matrix:
106
105
install :
107
106
# Install dependencies
108
107
- sudo apt-get install gcc-arm-embedded
108
+ # Add additional dependencies specific for testing
109
+ - |-
110
+ tr -d ' ' >> requirements.txt <<< "
111
+ mock==2.0.0
112
+ pytest==3.3.0
113
+ pylint>=1.9,<2
114
+ hypothesis>=3,<4
115
+ coverage>=4.5,<5
116
+ coveralls>=1.5,<2
117
+ "
118
+ # ... and install.
109
119
- pip install -r requirements.txt
110
- - pip install pytest pylint hypothesis==3.88.3 mock coverage coveralls
111
- # Print versions we use
112
120
121
+ # Print versions we use
113
122
- arm-none-eabi-gcc --version
114
123
- python --version
115
124
- pip list --verbose
You can’t perform that action at this time.
0 commit comments