Skip to content

Commit 59dc4ad

Browse files
committed
refactor(Makefiles): remove unneeded .PHONY target
1 parent 8f3a6c7 commit 59dc4ad

15 files changed

Lines changed: 7 additions & 23 deletions

File tree

Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,3 @@ test-smoke:
135135
uninstall: check-fleet stop
136136
$(FLEETCTL) unload -block-attempts=600 $(call deis_units,launched,.)
137137
$(FLEETCTL) destroy $(strip $(call deis_units,.,.))
138-
139-
.PHONY:

builder/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,3 @@ test-unit:
3434

3535
test-functional:
3636
GOPATH=$(CURDIR)/../tests/_vendor:$(GOPATH) go test -v -timeout 15m ./tests/...
37-
38-
.PHONY: test

builder/tests/builderComponent_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package verbose
1+
package tests
22

33
import (
44
"fmt"

cache/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,3 @@ test-unit:
3434

3535
test-functional:
3636
GOPATH=$(CURDIR)/../tests/_vendor:$(GOPATH) go test -v ./tests/...
37-
38-
.PHONY: test

cache/tests/cacheComponent_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package verbose
1+
package tests
22

33
import (
44
"fmt"

controller/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,3 @@ test-unit:
5353

5454
test-functional:
5555
GOPATH=$(CURDIR)/../tests/_vendor:$(GOPATH) go test -v ./tests/...
56-
57-
.PHONY: test

controller/tests/controllerComponent_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package verbose
1+
package tests
22

33
import (
44
"fmt"

database/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,3 @@ test-unit:
3434

3535
test-functional:
3636
GOPATH=$(CURDIR)/../tests/_vendor:$(GOPATH) go test -v ./tests/...
37-
38-
.PHONY: test

database/tests/databaseComponent_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package verbose
1+
package tests
22

33
import (
44
"fmt"

logger/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,3 @@ test-unit:
3434

3535
test-functional:
3636
GOPATH=$(CURDIR)/../tests/_vendor:$(GOPATH) go test -v ./tests/...
37-
38-
.PHONY: test

0 commit comments

Comments
 (0)