Bladeren bron

Merge pull request #13317 from bergquist/nuke_codecov

disable codecov
Torkel Ödegaard 7 jaren geleden
bovenliggende
commit
61b2100b9f
6 gewijzigde bestanden met toevoegingen van 4 en 36 verwijderingen
  1. 0 1
      Gruntfile.js
  2. 0 11
      codecov.yml
  3. 0 1
      package.json
  4. 1 11
      scripts/circle-test-backend.sh
  5. 2 6
      scripts/circle-test-frontend.sh
  6. 1 6
      scripts/grunt/options/exec.js

+ 0 - 1
Gruntfile.js

@@ -25,7 +25,6 @@ module.exports = function (grunt) {
     }
   }
 
-  config.coverage = grunt.option('coverage');
   config.phjs = grunt.option('phjsToRelease');
   config.pkg.version = grunt.option('pkgVer') || config.pkg.version;
 

+ 0 - 11
codecov.yml

@@ -1,11 +0,0 @@
-coverage:
-  precision: 2
-  round: down
-  range: "50...100"
-
-  status:
-    project: yes
-    patch: yes
-    changes: no
-
-comment: off

+ 0 - 1
package.json

@@ -100,7 +100,6 @@
     "watch": "webpack --progress --colors --watch --mode development --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",
     "jest": "jest --notify --watch",
     "api-tests": "jest --notify --watch --config=tests/api/jest.js",

+ 1 - 11
scripts/circle-test-backend.sh

@@ -17,17 +17,7 @@ echo "building backend with install to cache pkgs"
 exit_if_fail time go install ./pkg/cmd/grafana-server
 
 echo "running go test"
-
 set -e
-echo "" > coverage.txt
-
 time for d in $(go list ./pkg/...); do
-  exit_if_fail go test -coverprofile=profile.out -covermode=atomic $d
-  if [ -f profile.out ]; then
-    cat profile.out >> coverage.txt
-    rm profile.out
-  fi
+  exit_if_fail go test -covermode=atomic $d
 done
-
-echo "Publishing go code coverage"
-bash <(curl -s https://codecov.io/bash) -cF go

+ 2 - 6
scripts/circle-test-frontend.sh

@@ -10,9 +10,5 @@ function exit_if_fail {
     fi
 }
 
-exit_if_fail npm run test:coverage
-
-# 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

+ 1 - 6
scripts/grunt/options/exec.js

@@ -1,14 +1,9 @@
 module.exports = function(config, grunt) {
   'use strict';
 
-  var coverage = '';
-  if (config.coverage) {
-    coverage = '--coverage --maxWorkers 2';
-  }
-
   return {
     tslint: 'node ./node_modules/tslint/lib/tslintCli.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',
   };
 };