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
This commit is contained in:
Ariel Mashraki
2019-10-31 10:13:53 -07:00
committed by Facebook Github Bot
parent 838b8fab8a
commit 2d8e122226

View File

@@ -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: