Output JS Karma test coverage reports to ./cover/
Per CTI direction (see bug filing), this patch moves the JS Karma test coverage reports to ./cover/ so they may be collected in the gate for archiving. The two runs each have their own directory so they don't overlap/conflict. Change-Id: I0b1536c115a516f4b6ab80b5ebab5337b308c210 Closes-Bug: 1588389
This commit is contained in:
parent
4e384db0cf
commit
bf7c5908fb
1
.gitignore
vendored
1
.gitignore
vendored
@ -9,6 +9,7 @@
|
|||||||
.coverage*
|
.coverage*
|
||||||
.noseids
|
.noseids
|
||||||
.DS_STORE
|
.DS_STORE
|
||||||
|
/cover
|
||||||
coverage.xml
|
coverage.xml
|
||||||
coverage-karma
|
coverage-karma
|
||||||
nosetests.xml
|
nosetests.xml
|
||||||
|
@ -138,7 +138,7 @@ module.exports = function (config) {
|
|||||||
|
|
||||||
coverageReporter: {
|
coverageReporter: {
|
||||||
type: 'html',
|
type: 'html',
|
||||||
dir: '../coverage-karma/'
|
dir: '../../cover/horizon'
|
||||||
},
|
},
|
||||||
|
|
||||||
// Coverage threshold values.
|
// Coverage threshold values.
|
||||||
|
@ -184,7 +184,7 @@ module.exports = function (config) {
|
|||||||
// Places coverage report in HTML format in the subdirectory below.
|
// Places coverage report in HTML format in the subdirectory below.
|
||||||
coverageReporter: {
|
coverageReporter: {
|
||||||
type: 'html',
|
type: 'html',
|
||||||
dir: './coverage-karma/'
|
dir: '../cover/openstack_dashboard'
|
||||||
},
|
},
|
||||||
|
|
||||||
// Coverage threshold values.
|
// Coverage threshold values.
|
||||||
|
Loading…
Reference in New Issue
Block a user