Fix some tests : make coverage -> test (#2492)
* Fix test : make coverage -> test * Refactor integration tests to be able to run them in parallel * Add custom local repository temp path
This commit is contained in:
		
							parent
							
								
									eab4579e17
								
							
						
					
					
						commit
						69dfe43ffc
					
				
					 109 changed files with 38 additions and 24 deletions
				
			
		|  | @ -35,7 +35,7 @@ pipeline: | |||
|       TAGS: bindata sqlite | ||||
|       GOPATH: /srv/app | ||||
|     commands: | ||||
|       - make coverage | ||||
|       - make test | ||||
|     when: | ||||
|       event: [ push, tag, pull_request ] | ||||
| 
 | ||||
|  |  | |||
							
								
								
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							|  | @ -45,4 +45,6 @@ _testmain.go | |||
| /indexers | ||||
| /log | ||||
| /public/img/avatar | ||||
| /integrations/gitea-integration | ||||
| /integrations/gitea-integration-mysql | ||||
| /integrations/gitea-integration-pgsql | ||||
| /integrations/gitea-integration-sqlite | ||||
|  |  | |||
							
								
								
									
										25
									
								
								Makefile
									
									
									
									
									
								
							
							
						
						
									
										25
									
								
								Makefile
									
									
									
									
									
								
							|  | @ -54,7 +54,7 @@ all: build | |||
| .PHONY: clean | ||||
| clean: | ||||
| 	$(GO) clean -i ./... | ||||
| 	rm -rf $(EXECUTABLE) $(DIST) $(BINDATA) integrations*.test | ||||
| 	rm -rf $(EXECUTABLE) $(DIST) $(BINDATA) integrations*.test integrations/gitea-integration-pgsql/ integrations/gitea-integration-mysql/ integrations/gitea-integration-sqlite/ | ||||
| 
 | ||||
| required-gofmt-version: | ||||
| 	@$(GO) version  | grep -q '\(1.7\|1.8\)' || { echo "We require go version 1.7 or 1.8 to format code" >&2 && exit 1; } | ||||
|  | @ -160,12 +160,12 @@ test-sqlite: integrations.sqlite.test | |||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test | ||||
| 
 | ||||
| .PHONY: test-mysql | ||||
| test-mysql: integrations.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.test | ||||
| test-mysql: integrations.mysql.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.mysql.test | ||||
| 
 | ||||
| .PHONY: test-pgsql | ||||
| test-pgsql: integrations.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.test | ||||
| test-pgsql: integrations.pgsql.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.pgsql.test | ||||
| 
 | ||||
| 
 | ||||
| .PHONY: bench-sqlite | ||||
|  | @ -173,20 +173,23 @@ bench-sqlite: integrations.sqlite.test | |||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/sqlite.ini ./integrations.sqlite.test -test.bench . | ||||
| 
 | ||||
| .PHONY: bench-mysql | ||||
| bench-mysql: integrations.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.test -test.bench . | ||||
| bench-mysql: integrations.mysql.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.mysql.test -test.bench . | ||||
| 
 | ||||
| .PHONY: bench-pgsql | ||||
| bench-pgsql: integrations.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.test -test.bench . | ||||
| bench-pgsql: integrations.pgsql.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/pgsql.ini ./integrations.pgsql.test -test.bench . | ||||
| 
 | ||||
| 
 | ||||
| .PHONY: integration-test-coverage | ||||
| integration-test-coverage: integrations.cover.test | ||||
| 	GITEA_ROOT=${CURDIR} GITEA_CONF=integrations/mysql.ini ./integrations.cover.test -test.coverprofile=integration.coverage.out | ||||
| 
 | ||||
| integrations.test: $(SOURCES) | ||||
| 	$(GO) test -c code.gitea.io/gitea/integrations | ||||
| integrations.mysql.test: $(SOURCES) | ||||
| 	$(GO) test -c code.gitea.io/gitea/integrations -o integrations.mysql.test | ||||
| 
 | ||||
| integrations.pgsql.test: $(SOURCES) | ||||
| 	$(GO) test -c code.gitea.io/gitea/integrations -o integrations.pgsql.test | ||||
| 
 | ||||
| integrations.sqlite.test: $(SOURCES) | ||||
| 	$(GO) test -c code.gitea.io/gitea/integrations -o integrations.sqlite.test -tags 'sqlite' | ||||
|  |  | |||
Some files were not shown because too many files have changed in this diff Show more
		Loading…
	
		Reference in a new issue