File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5454 golangci-lint run ./...
5555
5656COVERAGE_FILE := coverage.out
57- test : build cmds
57+ test : build
5858 go test -coverprofile=$(COVERAGE_FILE ) .with-mocks $(MODULE ) /...
5959
6060coverage : test
Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ func nvdrainWrapper(c *cli.Context, f *flags) error {
219219 for _ , err := range errs {
220220 log .Errorf ("error reported by drain helper: %v" , err )
221221 }
222- return fmt .Errorf ("Failed to delete all GPU pods" )
222+ return fmt .Errorf ("failed to delete all GPU pods" )
223223 }
224224
225225 for _ , p := range podDeleteList .Pods () {
@@ -238,7 +238,7 @@ func nvdrainWrapper(c *cli.Context, f *flags) error {
238238 log .Info ("Deleting GPU pods..." )
239239 err = drainHelper .DeleteOrEvictPods (podDeleteList .Pods ())
240240 if err != nil {
241- return fmt .Errorf ("Failed to delete all GPU pods: %v" , err )
241+ return fmt .Errorf ("failed to delete all GPU pods: %v" , err )
242242 }
243243
244244 return nil
You can’t perform that action at this time.
0 commit comments