Skip to content

Commit

Permalink
ci: Fix test result display - add -v
Browse files Browse the repository at this point in the history
Had lost -v flag when going from json to xml
  • Loading branch information
timabell committed Jan 30, 2024
1 parent f5889b1 commit 669a5c2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
file="`pwd`/db/test.db" # relative path hack with pwd, otherwise not resolved.
popd
go clean -testcache
go test sse_test.go \
go test -v sse_test.go \
--driver=sqlite \
--display-name=testing-flags \
--live=true \
Expand All @@ -92,7 +92,7 @@ jobs:
export schemaexplorer_sqlite_file="$file"
popd
go clean -testcache
go test sse_test.go \
go test -v sse_test.go \
2>&1 | go-junit-report -iocopy -set-exit-code -out results-sqlite-env-${{ matrix.go-version }}.xml
- name: Setup - pg
Expand All @@ -108,7 +108,7 @@ jobs:
schemaexplorer_pg_connection_string: "postgres://ssetestusr:ssetestusr@localhost/ssetest?sslmode=disable"
run: |
go clean -testcache
go test sse_test.go \
go test -v sse_test.go \
2>&1 | go-junit-report -iocopy -set-exit-code -out results-pg-${{ matrix.go-version }}.xml
- name: Setup - mysql
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
schemaexplorer_mssql_connection_string: "server=localhost;user id=sa;password=GithubIs2broken;database=ssetest"
run: |
go clean -testcache
go test sse_test.go \
go test -v sse_test.go \
2>&1 | go-junit-report -iocopy -set-exit-code -out results-MSSQL-${{ matrix.go-version }}.xml
# - name: Upload Go test results
Expand Down

0 comments on commit 669a5c2

Please sign in to comment.