Skip to content
This repository was archived by the owner on Mar 27, 2024. It is now read-only.

Commit 1946964

Browse files
committed
increase go test timeout to 20 m
1 parent b840e04 commit 1946964

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Makefile

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ RELEASE_BUCKET ?= $(PROJECT)
3030
SUPPORTED_PLATFORMS := linux-$(GOARCH) darwin-$(GOARCH) windows-$(GOARCH).exe
3131
BUILD_PACKAGE = $(REPOPATH)
3232

33-
SHELL = sh -xv
34-
3533
# These build tags are from the containers/image library.
3634
#
3735
# container_image_ostree_stub allows building the library without requiring the libostree development libraries
@@ -64,7 +62,7 @@ test: $(BUILD_DIR)/$(PROJECT)
6462

6563
.PHONY: integration
6664
integration: $(BUILD_DIR)/$(PROJECT)
67-
go test -v -tags integration $(REPOPATH)/tests
65+
go test -v -tags integration $(REPOPATH)/tests -timeout 20m
6866

6967
.PHONY: release
7068
release: cross
@@ -73,5 +71,3 @@ release: cross
7371
.PHONY: clean
7472
clean:
7573
rm -rf $(BUILD_DIR)
76-
77-

0 commit comments

Comments
 (0)