Skip to content

Commit 62fd646

Browse files
author
murilobsd
committed
update make discarting folders for testing
1 parent e15667c commit 62fd646

File tree

6 files changed

+5
-9
lines changed

6 files changed

+5
-9
lines changed

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ install_glide:
4040
fi
4141

4242
test:
43-
@go test -v -race $(shell go list ./src/docsdocs/...)
43+
@go test -v $(shell go list docsdocs/... | grep -v docsdocs/client/views/gui)
4444

4545
coverage:
46-
@goverage -coverprofile=coverage.txt docsdocs/...
46+
@goverage -v -coverprofile=coverage.txt $(shell go list docsdocs/... | grep -v docsdocs/client/views/gui)
4747

4848
all: fmt client

src/docsdocs/client/cli.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package client

src/docsdocs/client/config.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package client

src/docsdocs/client/main.go

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package client

src/docsdocs/crypto/generate_test.go

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package crypto
22

33
import (
44
"bytes"
5-
"fmt"
65
"testing"
76
)
87

@@ -74,5 +73,4 @@ func TestExportPublic(t *testing.T) {
7473
if err != nil {
7574
t.Error(err)
7675
}
77-
fmt.Println(buf)
7876
}

src/docsdocs/main/docs/docs.go

-5
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
11
package main
22

33
import (
4-
"docsdocs/client/views/gui"
54
"docsdocs/log"
65
)
76

87
func main() {
98
log.Settings("json", "stdout", "debug")
10-
logTest := log.NewDocsLogger()
11-
logTest.Debug("DocsDocs Crypt Debug Log")
12-
win := gui.NewGuiView()
13-
win.Run()
149
}

0 commit comments

Comments
 (0)