Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit dbda6bb

Browse files
committedOct 18, 2017
test: keep coverage reports after coverage-clean
Add coverage folder to .gitignore and remove it from the list of files & folders delete by coverage-clean.
1 parent 0a090d3 commit dbda6bb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed
 

‎.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ node_g
3636
icu_config.gypi
3737
.eslintcache
3838
node_trace.*.log
39+
coverage/
3940

4041
/out
4142

‎Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ coverage-clean:
128128
$(RM) -r node_modules
129129
$(RM) -r gcovr testing
130130
$(RM) -r out/$(BUILDTYPE)/.coverage
131-
$(RM) -r .cov_tmp coverage
131+
$(RM) -r .cov_tmp
132132
$(RM) out/$(BUILDTYPE)/obj.target/node/{src,gen}/*.gcda
133133
$(RM) out/$(BUILDTYPE)/obj.target/node/src/tracing/*.gcda
134134
$(RM) out/$(BUILDTYPE)/obj.target/node/{src,gen}/*.gcno

0 commit comments

Comments
 (0)
Please sign in to comment.