File tree 5 files changed +6
-10
lines changed
5 files changed +6
-10
lines changed Load Diff This file was deleted.
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
20
21
21
22
0.3
22
23
- (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://coveralls .io/repos /php-coder/mystamps/badge.svg?branch=master )] ( https://coveralls .io/r /php-coder/mystamps )
5
+ [ ![ Coverage Status] ( https://codecov .io/gh /php-coder/mystamps/branch/master/graph/ badge.svg )] ( https://codecov .io/gh /php-coder/mystamps )
6
6
[ ![ PDD Status] ( http://www.0pdd.com/svg?name=php-coder/mystamps )] ( http://www.0pdd.com/p?name=php-coder/mystamps )
7
7
8
8
## What's it?
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>
484
483
<cucumber .version>1.2.5</cucumber .version>
485
484
<datagen .version>2.2.1</datagen .version>
486
485
932
931
</executions >
933
932
</plugin >
934
933
935
- <plugin >
936
- <groupId >org.eluder.coveralls</groupId >
937
- <artifactId >coveralls-maven-plugin</artifactId >
938
- <version >${coveralls.plugin.version} </version >
939
- </plugin >
940
-
941
934
<plugin >
942
935
<groupId >org.jacoco</groupId >
943
936
<artifactId >jacoco-maven-plugin</artifactId >
Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ set -o pipefail
15
15
16
16
JACOCO_FAIL=
17
17
18
- mvn --batch-mode jacoco:prepare-agent test jacoco:report coveralls:jacoco -Denforcer.skip=true -DskipMinify=true > jacoco.log 2>&1 || JACOCO_FAIL=yes
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
19
22
20
23
print_status " $JACOCO_FAIL " ' Publish code coverage'
21
24
You can’t perform that action at this time.
0 commit comments