travis golang

pull/5459/head
Medya Gh 2019-09-25 10:31:15 -07:00
parent 3aece1262a
commit 9b99de5806
2 changed files with 5 additions and 6 deletions

View File

@ -8,13 +8,11 @@ env:
- GOPROXY=https://proxy.golang.org
matrix:
include:
- language: python
before_install: pip install flake8
script: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
- language: python
env:
- TESTSUITE_BOILERPLATE=true
before_install:
- pip install flake8 && flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
script: make test
- language: go

View File

@ -55,13 +55,14 @@ then
else
echo "ok"
fi
echo "= schema_check =========================================================="
go run deploy/minikube/schema_check.go >/dev/null && echo ok || ((exitcode += 8))
fi
if [[ ! -z "$TESTSUITE_UNIT" ]]
then
echo "= schema_check =========================================================="
go run deploy/minikube/schema_check.go >/dev/null && echo ok || ((exitcode += 8))
echo "= go test ==============================================================="
cov_tmp="$(mktemp)"
readonly COVERAGE_PATH=./out/coverage.txt