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:
parent
dacf58eb99
commit
2ccf5c4ffe
|
@ -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
|
||||
|
|
|
@ -5,6 +5,5 @@ jasmine_node_test(
|
|||
srcs = glob(["*.js"]),
|
||||
data = [
|
||||
"commit-message.json",
|
||||
"spec/support/jasmine.json",
|
||||
],
|
||||
)
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
"spec_dir": "",
|
||||
"spec_files": [
|
||||
"**/*[sS]pec.js"
|
||||
],
|
||||
"helpers": [
|
||||
"helpers/**/*.js"
|
||||
],
|
||||
"stopSpecOnExpectationFailure": false,
|
||||
"random": false
|
||||
}
|
Loading…
Reference in New Issue