Skip to content

Commit 36b0f03

Browse files
committed
Always enable coverage [skip appveyor]
1 parent 484c85e commit 36b0f03

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.travis.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ addons:
2424
env:
2525
global:
2626
- MAKEJOBS="-j$(getconf _NPROCESSORS_ONLN)"
27-
- COVERAGE=ON
2827
- ZEND_DONT_UNLOAD_MODULES=1
2928
- USE_ZEND_ALLOC=0
3029
- TRAVIS_COMMIT_LOG=`git log --format=fuller -2`
@@ -59,7 +58,7 @@ install:
5958
- make $MAKEJOBS
6059

6160
before_script:
62-
- if [ $COVERAGE = "ON" ]; then make coverage-initial; fi
61+
- make coverage-initial
6362
- |
6463
if [ "$(php-config --vernum)" -ge "70300" ]; then
6564
echo "Patching PHP tests ruunner"
@@ -80,11 +79,8 @@ after_failure:
8079
- .ci/after-failure.sh
8180

8281
after_success:
83-
- |
84-
if [ $COVERAGE = "ON" ]; then
85-
make coverage-capture
86-
bash <(curl -s https://codecov.io/bash)
87-
fi
82+
- make coverage-capture
83+
- bash <(curl -s https://codecov.io/bash)
8884

8985
after_script:
9086
- printf "$TRAVIS_COMMIT_RANGE\n"

0 commit comments

Comments
 (0)