File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -514,6 +514,10 @@ bench-pgsql: integrations.pgsql.test generate-ini-pgsql
514
514
integration-test-coverage : integrations.cover.test generate-ini-mysql
515
515
GITEA_ROOT=" $( CURDIR) " GITEA_CONF=integrations/mysql.ini ./integrations.cover.test -test.coverprofile=integration.coverage.out
516
516
517
+ .PHONY : integration-test-coverage-sqlite
518
+ integration-test-coverage-sqlite : integrations.cover.sqlite.test generate-ini-sqlite
519
+ GITEA_ROOT=" $( CURDIR) " GITEA_CONF=integrations/sqlite.ini ./integrations.cover.sqlite.test -test.coverprofile=integration.coverage.out
520
+
517
521
integrations.mysql.test : git-check $(GO_SOURCES )
518
522
$(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/integrations -o integrations.mysql.test
519
523
@@ -532,6 +536,9 @@ integrations.sqlite.test: git-check $(GO_SOURCES)
532
536
integrations.cover.test : git-check $(GO_SOURCES )
533
537
$(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/integrations -coverpkg $(shell echo $(GO_PACKAGES ) | tr ' ' ',') -o integrations.cover.test
534
538
539
+ integrations.cover.sqlite.test : git-check $(GO_SOURCES )
540
+ $(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/integrations -coverpkg $(shell echo $(GO_PACKAGES ) | tr ' ' ',') -o integrations.cover.sqlite.test -tags ' $(TEST_TAGS)'
541
+
535
542
.PHONY : migrations.mysql.test
536
543
migrations.mysql.test : $(GO_SOURCES )
537
544
$(GO ) test $(GOTESTFLAGS ) -c code.gitea.io/gitea/integrations/migration-test -o migrations.mysql.test
You can’t perform that action at this time.
0 commit comments