File tree 5 files changed +26
-9
lines changed
5 files changed +26
-9
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ install:
16
16
- go get -v -t ./...
17
17
18
18
script :
19
- - make test
19
+ - make test-coverage
20
20
21
21
after_success :
22
22
- bash <(curl -s https://codecov.io/bash)
Original file line number Diff line number Diff line change
1
+ COVERAGE_REPORT := coverage.txt
2
+ COVERAGE_PROFILE := profile.out
3
+ COVERAGE_MODE := atomic
4
+
1
5
LINGUIST_PATH = .linguist
2
6
3
7
$(LINGUIST_PATH ) :
@@ -6,8 +10,21 @@ $(LINGUIST_PATH):
6
10
test : $(LINGUIST_PATH )
7
11
go test -v ./...
8
12
13
+ test-coverage : $(LINGUIST_PATH )
14
+ @echo " mode: $( COVERAGE_MODE) " > $(COVERAGE_REPORT ) ; \
15
+ for dir in ` find . -name " *.go" | grep -o ' .*/' | sort -u | grep -v ' ./.linguist/' ` ; do \
16
+ go test $$ dir -coverprofile=$(COVERAGE_PROFILE ) -covermode=$(COVERAGE_MODE ) ; \
17
+ if [ $$ ? != 0 ]; then \
18
+ exit 2; \
19
+ fi ; \
20
+ if [ -f $( COVERAGE_PROFILE) ]; then \
21
+ tail -n +2 $(COVERAGE_PROFILE ) >> $(COVERAGE_REPORT ) ; \
22
+ rm $(COVERAGE_PROFILE ) ; \
23
+ fi ; \
24
+ done ;
25
+
9
26
code-generate : $(LINGUIST_PATH )
10
27
go run internal/code-generator/main.go
11
28
12
29
clean :
13
- rm -rf $(LINGUIST_PATH )
30
+ rm -rf $(LINGUIST_PATH )
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ func main() {
20
20
log .Fatal (err )
21
21
}
22
22
23
- enry .LoadGitAttributes ()
23
+ enry .LoadGitattributes ()
24
24
25
25
errors := false
26
26
out := make (map [string ][]string , 0 )
Original file line number Diff line number Diff line change @@ -84,20 +84,20 @@ func IsBinary(data []byte) bool {
84
84
return true
85
85
}
86
86
87
- // LoadGitattributes reads and parse the file .gitattributes wich overrides the standards strategies
87
+ // LoadGitattributes reads and parses the file .gitattributes which overrides the standard strategies
88
88
func LoadGitattributes () {
89
- rawAttributes , err := loadGitattributes (".gitattributes" )
89
+ rawAttributes , err := loadRawGitattributes (".gitattributes" )
90
90
if err == nil && len (rawAttributes ) > 0 {
91
91
parseAttributes (rawAttributes )
92
92
}
93
93
}
94
94
95
- func loadGitattributes (name string ) (map [string ]string , error ) {
95
+ func loadRawGitattributes (name string ) (map [string ]string , error ) {
96
96
gitattributes := map [string ]string {}
97
97
data , err := ioutil .ReadFile (name )
98
98
if err != nil {
99
99
if err != os .ErrNotExist {
100
- log .Println (".gitattributes : " + err .Error ())
100
+ log .Println (name + " : " + err .Error ())
101
101
}
102
102
103
103
return nil , err
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ func (s *EnryTestSuite) TestIsBinary() {
82
82
}
83
83
}
84
84
85
- func (s * SimpleLinguistTestSuite ) TestLoadLine () {
85
+ func (s * EnryTestSuite ) TestLoadLine () {
86
86
tests := []struct {
87
87
name string
88
88
line string
@@ -101,7 +101,7 @@ func (s *SimpleLinguistTestSuite) TestLoadLine() {
101
101
}
102
102
}
103
103
104
- func (s * SimpleLinguistTestSuite ) TestParseAttributes () {
104
+ func (s * EnryTestSuite ) TestParseAttributes () {
105
105
tests := []struct {
106
106
name string
107
107
attributes map [string ]string
You can’t perform that action at this time.
0 commit comments