Skip to content

Commit

Permalink
feat: run test coverage against postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
aymanbagabas committed Dec 7, 2023
1 parent 20c9f98 commit df7a932
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest] # TODO: add macos & windows
services:
postgres:
image: postgres
ports:
- 5432:5432
env:
POSTGRES_PASSWORD: postgres
options: >-
--health-cmd pg_isready
--health-interval 10s
--health-timeout 5s
--health-retries 5
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand All @@ -30,15 +42,19 @@ jobs:
# https://github.com/golang/go/issues/51430#issuecomment-1344711300
mkdir -p coverage/unit
mkdir -p coverage/int
mkdir -p coverage/int2
# Collect unit tests coverage
go test -failfast -race -timeout 5m -skip=^TestScript -cover ./... -args -test.gocoverdir=$PWD/coverage/unit
# Collect integration tests coverage
GOCOVERDIR=$PWD/coverage/int go test -failfast -race -timeout 5m -run=^TestScript ./...
SOFT_SERVE_DB_DRIVER=postgres \
SOFT_SERVE_DB_DATA_SOURCE=postgres://postgres:postgres@localhost/postgres?sslmode=disable \
GOCOVERDIR=$PWD/coverage/int2 go test -failfast -race -timeout 5m -run=^TestScript ./...
# Convert coverage data to legacy textfmt format to upload
go tool covdata textfmt -i=coverage/unit,coverage/int -o=coverage.txt
go tool covdata textfmt -i=coverage/unit,coverage/int,coverage/int2 -o=coverage.txt
- uses: codecov/codecov-action@v3
with:
file: ./coverage.txt

0 comments on commit df7a932

Please sign in to comment.