File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,10 @@ jobs:
199199 - name : Install code-climate tools for ${{ matrix.python-version }}
200200 if : ${{ !cancelled() && runner.os != 'Windows' }}
201201 shell : bash
202- run : ./tests/fetch_cc-test-reporter || true ;
202+ run : |
203+ ./tests/fetch_cc-test-reporter || true ;
204+ ls -lap . || true ;
205+ ls -lap bin || true ;
203206 - name : Generate Coverage for py3.9 on ${{ matrix.os }}
204207 if : ${{ runner.python-version == '3.9' }}
205208 run : make -f Makefile test ;
Original file line number Diff line number Diff line change @@ -111,10 +111,10 @@ else ifeq ($(shell uname -s), Linux)
111111 PIP_ENV_FLAGS :=
112112else
113113 PIP_ENV_FLAGS :=
114- FETCH_CC_TOOL :=
115- CC_TOOL :=
114+ FETCH_CC_TOOL := :
115+ CC_TOOL := :
116116 CC_TOOL_ARGS :=
117- DS_TOOL :=
117+ DS_TOOL := :
118118 DS_TOOL_ARGS :=
119119endif
120120
@@ -259,7 +259,7 @@ test-style: cleanup
259259 $(QUIET )$(ECHO ) " $@ : Done."
260260
261261cc-test-reporter : tests/fetch_cc-test-reporter
262- $(QUIET )$(FETCH_CC_TOOL ) ;
262+ $(QUIET )$(FETCH_CC_TOOL ) || DO_FAIL= " exit 2 " ;
263263 $(QUIET )$(WAIT ) ;
264264 $(QUIET )$(DO_FAIL ) ;
265265 $(QUIET )$(ECHO ) " $@ : Done."
You can’t perform that action at this time.
0 commit comments