File tree Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Expand file tree Collapse file tree 5 files changed +10
-6
lines changed Original file line number Diff line number Diff line change
1
+ service_name : travis-ci
Original file line number Diff line number Diff line change 17
17
- (functionality) add interface for adding buyers and sellers
18
18
- (functionality) add capability to specify image URL (as alternative to providing a file)
19
19
- (functionality) admin can import a series from an external site
20
- - (integration) migrate from coveralls.io to codecov.io service for code coverage
21
20
22
21
0.3
23
22
- (functionality) implemented possibility to user to add series to his collection
Original file line number Diff line number Diff line change 2
2
3
3
[ ![ Build Status] ( https://travis-ci.org/php-coder/mystamps.svg?branch=master )] ( https://travis-ci.org/php-coder/mystamps )
4
4
[ ![ Dependency Status] ( https://www.versioneye.com/user/projects/55b783256537620017001225/badge.svg?style=flat )] ( https://www.versioneye.com/user/projects/55b783256537620017001225 )
5
- [ ![ Coverage Status] ( https://codecov .io/gh /php-coder/mystamps/branch/master/graph/ badge.svg )] ( https://codecov .io/gh /php-coder/mystamps )
5
+ [ ![ Coverage Status] ( https://coveralls .io/repos /php-coder/mystamps/badge.svg?branch=master )] ( https://coveralls .io/r /php-coder/mystamps )
6
6
7
7
## What's it?
8
8
Original file line number Diff line number Diff line change 480
480
481
481
<commons .lang.version>3.4</commons .lang.version>
482
482
<compiler .plugin.version>3.6.1</compiler .plugin.version>
483
+ <coveralls .plugin.version>2.2.0</coveralls .plugin.version>
483
484
<cucumber .version>1.2.5</cucumber .version>
484
485
<datagen .version>2.2.1</datagen .version>
485
486
931
932
</executions >
932
933
</plugin >
933
934
935
+ <plugin >
936
+ <groupId >org.eluder.coveralls</groupId >
937
+ <artifactId >coveralls-maven-plugin</artifactId >
938
+ <version >${coveralls.plugin.version} </version >
939
+ </plugin >
940
+
934
941
<plugin >
935
942
<groupId >org.jacoco</groupId >
936
943
<artifactId >jacoco-maven-plugin</artifactId >
Original file line number Diff line number Diff line change @@ -15,10 +15,7 @@ set -o pipefail
15
15
16
16
JACOCO_FAIL=
17
17
18
- mvn --batch-mode jacoco:prepare-agent test jacoco:report -Denforcer.skip=true -DskipMinify=true > jacoco.log 2>&1 || JACOCO_FAIL=yes
19
-
20
- # -Z Exit with 1 if not successful. Default will Exit with 0
21
- bash <( curl -s https://codecov.io/bash) -Z >> jacoco.log 2>&1 || JACOCO_FAIL=yes
18
+ mvn --batch-mode jacoco:prepare-agent test jacoco:report coveralls:jacoco -Denforcer.skip=true -DskipMinify=true > jacoco.log 2>&1 || JACOCO_FAIL=yes
22
19
23
20
print_status " $JACOCO_FAIL " ' Publish code coverage'
24
21
You can’t perform that action at this time.
0 commit comments