Skip to content

Commit e82fa6f

Browse files
committed
Added back .coveralls.yml to gitignore.
Apparently for public repos, the private repo token isn't necessary; you just need to specify the service in .coveralls.yml.
1 parent 698fa2f commit e82fa6f

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

.coveralls.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
service_name: travis-ci

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,5 +71,3 @@ crashlytics-build.properties
7171
leptonica-*
7272
tesseract-*
7373

74-
# Private Coveralls
75-
.coveralls.yml

.travis.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ xcode_sdk:
66
xcode_scheme:
77
- Template Framework Project
88
- TestsProject
9+
before_install:
10+
sudo pip install cpp-coveralls
911
after_success:
10-
./scripts/coveralls.rb --extension m --extension mm --exclude-folder include
12+
./scripts/coveralls.rb --extension m --extension mm --exclude-folder include --exclude-folder TestsProject
1113

scripts/coveralls.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
# arraw of source subfolders to exclude
99
excludedFolders = []
1010
extensionsToProcess = []
11-
coveralls_cmd = "coveralls"
11+
coveralls_cmd = "cpp-coveralls"
1212

1313
excludeHeaders = false
1414

0 commit comments

Comments
 (0)