diff --git a/.circleci/config.yml b/.circleci/config.yml index 9d2f97068..a06d2266e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -33,6 +33,9 @@ jobs: # login here for tests - run: docker login -u $DOCKER_USER -p $DOCKER_PASS - run: ./test.sh + - run: ./api_test.sh mysql 4 + - run: ./api_test.sh postgres 4 + - run: ./api_test.sh sqlite 4 - deploy: command: | if [ "${CIRCLE_BRANCH}" == "master" ]; then diff --git a/test.sh b/test.sh index 3235d4060..fe63f6e51 100755 --- a/test.sh +++ b/test.sh @@ -38,7 +38,7 @@ container_ip) ;; esac -go test -v $(go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v cli | grep -v tmp/go/src) +go test -v $(go list ./... | grep -v vendor | grep -v examples | grep -v tool | grep -v cli | grep -v tmp/go/src | grep -v test/fn-api-tests) docker rm --force func-postgres-test docker rm --force func-mysql-test