Skip to content

Commit 4febba3

Browse files
[DEBUG] break a few eggs for the omlet
1 parent 286b079 commit 4febba3

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/Tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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 ;

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ else ifeq ($(shell uname -s), Linux)
111111
PIP_ENV_FLAGS :=
112112
else
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 :=
119119
endif
120120

@@ -259,7 +259,7 @@ test-style: cleanup
259259
$(QUIET)$(ECHO) "$@: Done."
260260

261261
cc-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."

0 commit comments

Comments
 (0)