summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorAntoine GIRARD <sapk@users.noreply.github.com>2017-11-26 03:00:57 +0100
committerLunny Xiao <xiaolunwen@gmail.com>2017-11-26 10:00:57 +0800
commitd23a3e96f16414c35a6b723ace1e6de73faca7ac (patch)
tree8751d9544368ae139f3ae3f0f2799e8ef797b494 /Makefile
parent40c545ddbccc65aa607a2153d38b56cc3bb99be9 (diff)
downloadgitea-d23a3e96f16414c35a6b723ace1e6de73faca7ac.tar.gz
gitea-d23a3e96f16414c35a6b723ace1e6de73faca7ac.zip
Fix bench deps since #2916 (#2971)
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 40b844397e..9f6d769d22 100644
--- a/Makefile
+++ b/Makefile
@@ -193,12 +193,12 @@ bench-sqlite: integrations.sqlite.test
GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test -test.bench .
.PHONY: bench-mysql
-bench-mysql: integrations.mysql.test generate-ini
- GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.mysql.test -test.bench .
+bench-mysql: integrations.test generate-ini
+ GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.test -test.bench .
.PHONY: bench-pgsql
-bench-pgsql: integrations.pgsql.test generate-ini
- GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.pgsql.test -test.bench .
+bench-pgsql: integrations.test generate-ini
+ GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.test -test.bench .
.PHONY: integration-test-coverage