Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
6c6b74fc
Commit
6c6b74fc
authored
Apr 16, 2018
by
bergquist
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removes codecov from front-end tests
parent
738fb291
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
28 deletions
+4
-28
Gruntfile.js
+0
-1
codecov.yml
+0
-13
package.json
+0
-1
scripts/circle-test-frontend.sh
+3
-7
scripts/grunt/options/exec.js
+1
-6
No files found.
Gruntfile.js
View file @
6c6b74fc
...
...
@@ -22,7 +22,6 @@ module.exports = function (grunt) {
}
}
config
.
coverage
=
grunt
.
option
(
'coverage'
);
config
.
phjs
=
grunt
.
option
(
'phjsToRelease'
);
config
.
pkg
.
version
=
grunt
.
option
(
'pkgVer'
)
||
config
.
pkg
.
version
;
...
...
codecov.yml
deleted
100644 → 0
View file @
738fb291
coverage
:
precision
:
2
round
:
down
range
:
"
50...100"
status
:
project
:
yes
patch
:
yes
changes
:
no
comment
:
layout
:
"
diff"
behavior
:
"
once"
package.json
View file @
6c6b74fc
...
...
@@ -102,7 +102,6 @@
"watch"
:
"webpack --progress --colors --watch --config scripts/webpack/webpack.dev.js"
,
"build"
:
"grunt build"
,
"test"
:
"grunt test"
,
"test:coverage"
:
"grunt test --coverage=true"
,
"lint"
:
"tslint -c tslint.json --project tsconfig.json --type-check"
,
"karma"
:
"grunt karma:dev"
,
"jest"
:
"jest --notify --watch"
,
...
...
scripts/circle-test-frontend.sh
View file @
6c6b74fc
...
...
@@ -10,10 +10,5 @@ function exit_if_fail {
fi
}
exit_if_fail npm run
test
:coverage
exit_if_fail npm run build
# publish code coverage
echo
"Publishing javascript code coverage"
bash <
(
curl
-s
https://codecov.io/bash
)
-cF
javascript
rm
-rf
coverage
exit_if_fail npm run
test
exit_if_fail npm run build
\ No newline at end of file
scripts/grunt/options/exec.js
View file @
6c6b74fc
module
.
exports
=
function
(
config
,
grunt
)
{
'use strict'
;
var
coverage
=
''
;
if
(
config
.
coverage
)
{
coverage
=
'--coverage --maxWorkers 2'
;
}
return
{
tslint
:
'node ./node_modules/tslint/lib/tslint-cli.js -c tslint.json --project ./tsconfig.json'
,
jest
:
'node ./node_modules/jest-cli/bin/jest.js
'
+
coverage
,
jest
:
'node ./node_modules/jest-cli/bin/jest.js
--maxWorkers 2'
,
webpack
:
'node ./node_modules/webpack/bin/webpack.js --config scripts/webpack/webpack.prod.js'
,
};
};
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment