Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge branch 'main' into fastpg
  • Loading branch information
kylecarbs committed Jun 22, 2022
commit 9eef36a867f9ae12c8ecbe695dc136e59e83c342
8 changes: 7 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,13 @@ test: test-clean
gotestsum -- -v -short ./...
.PHONY: test

.PHONY: test-postgres-docker
test-postgres: test-clean
DB=ci gotestsum --junitfile="gotests.xml" --packages="./..." -- \
-covermode=atomic -coverprofile="gotests.coverage" -timeout=30m \
-coverpkg=./...,github.com/coder/coder/codersdk \
-count=1 -race -failfast
.PHONY: test-postgres

test-postgres-docker:
docker run \
--env POSTGRES_PASSWORD=postgres \
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.