ci: remove validate-commit-message tests from travis (#27386)

we alredy run them via bazel.

I also removed a bunch of obsolete files that bazel doesn't need.

PR Close #27386
This commit is contained in:
Igor Minar 2018-12-01 02:18:44 -08:00
parent dacf58eb99
commit 2ccf5c4ffe
3 changed files with 0 additions and 25 deletions

View File

@ -6,19 +6,6 @@ set -u -e -o pipefail
readonly thisDir=$(cd $(dirname $0); pwd)
source ${thisDir}/_travis-fold.sh
# Run unit tests for our tools/ directory
travisFoldStart "test.unit.tools"
# TODO(i): could this be rolled into the tools tests above? why is it separate?
travisFoldStart "test.unit.validate-commit-message"
(
cd tools/validate-commit-message
$(npm bin)/jasmine
)
travisFoldEnd "test.unit.validate-commit-message"
travisFoldEnd "test.unit.tools"
# Run unit tests in node
travisFoldStart "test.unit.node"
node --harmony ./dist/tools/tsc-watch/ node runCmdsOnly

View File

@ -5,6 +5,5 @@ jasmine_node_test(
srcs = glob(["*.js"]),
data = [
"commit-message.json",
"spec/support/jasmine.json",
],
)

View File

@ -1,11 +0,0 @@
{
"spec_dir": "",
"spec_files": [
"**/*[sS]pec.js"
],
"helpers": [
"helpers/**/*.js"
],
"stopSpecOnExpectationFailure": false,
"random": false
}