From 2d8e122226dcab851265370ba83ce15d452d7946 Mon Sep 17 00:00:00 2001 From: Ariel Mashraki Date: Thu, 31 Oct 2019 10:13:53 -0700 Subject: [PATCH] circleci: add short-verbose option to gotessum Summary: Pull Request resolved: https://github.com/facebookincubator/ent/pull/135 Reviewed By: alexsn Differential Revision: D18247848 fbshipit-source-id: b6b774e1bae58ee705086e54415806155ba4b3b8 --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d7ad364d3..4958881ec 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -40,19 +40,19 @@ jobs: - getmods - run: name: Dialect tests - command: gotestsum --junitfile ~/test-results/dialect.xml + command: gotestsum -f short-verbose --junitfile ~/test-results/dialect.xml working_directory: dialect - run: name: Schema tests - command: gotestsum --junitfile ~/test-results/schema.xml + command: gotestsum -f short-verbose --junitfile ~/test-results/schema.xml working_directory: schema - run: name: Loader tests - command: gotestsum --junitfile ~/test-results/load.xml + command: gotestsum -f short-verbose --junitfile ~/test-results/load.xml working_directory: entc/load - run: name: Codegen tests - command: gotestsum --junitfile ~/test-results/gen.xml + command: gotestsum -f short-verbose --junitfile ~/test-results/gen.xml working_directory: entc/gen - *storetestdir @@ -119,7 +119,7 @@ jobs: - run: name: Run integration tests working_directory: entc/integration - command: gotestsum --junitfile ~/test-results/integration.xml -- -race ./... + command: gotestsum -f short-verbose --junitfile ~/test-results/integration.xml -- -race ./... - *storetestdir docs: