Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Steinhardt <psteinhardt@gitlab.com>2021-08-13 18:04:53 +0300
committerPatrick Steinhardt <psteinhardt@gitlab.com>2021-08-17 10:38:04 +0300
commit5745aa91bc4061bef8f2c2475f974327bf6643d7 (patch)
treea326be1ce80ae0af5d264c455e98546dbc66dbd2
parentf6ebdc9e7754cf97776fe388f3b0914ae123f5ad (diff)
Makefile: Simplify test-postgres target
The `test-postgres` target does essentially the same as the normal `test-go` target nowadays, except that it doesn't generate a report and that it only runs one specific test. We can thus simplify it to use the `test-go` target diretcly.
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 1464cd6fc..e9ee98d2c 100644
--- a/Makefile
+++ b/Makefile
@@ -296,8 +296,7 @@ test-with-praefect: build prepare-tests
.PHONY: test-postgres
## Run Go tests with Postgres.
test-postgres: TEST_PACKAGES := gitlab.com/gitlab-org/gitaly/v14/internal/praefect/...
-test-postgres: prepare-tests
- ${Q}$(call run_go_tests)
+test-postgres: test-go
.PHONY: race-go
## Run Go tests with race detection enabled.