File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change 8
8
9
9
env :
10
10
global :
11
- - CODE_COVERAGE=0
12
11
- INSTALL_LARAVEL=0
13
12
- INSTALL_LUMEN=0
14
13
- STATIC_ANALYSER=0
@@ -40,7 +39,7 @@ matrix:
40
39
- php : ' 7.3'
41
40
env : LARAVEL='5.7.*'
42
41
- php : ' 7.3'
43
- env : LARAVEL='5.8.*' CODE_COVERAGE=1 STATIC_ANALYSER=1 INSTALL_LARAVEL=1 INSTALL_LUMEN=1
42
+ env : LARAVEL='5.8.*' STATIC_ANALYSER=1 INSTALL_LARAVEL=1 INSTALL_LUMEN=1
44
43
- php : ' 7.3'
45
44
env : LARAVEL='dev-master'
46
45
- php : ' 7.4snapshot'
@@ -70,16 +69,7 @@ install:
70
69
71
70
script :
72
71
- if [[ $STATIC_ANALYSER = 1 ]]; then composer phpstan; fi
73
- - if [[ $CODE_COVERAGE = 0 ]]; then vendor/bin/phpunit --colors=always --verbose; fi
74
- - |
75
- if [[ $CODE_COVERAGE = 1 ]]; then
76
- phpdbg -qrr vendor/bin/phpunit --colors=always --verbose --coverage-clover=coverage.xml
77
- bash <(curl -s https://codecov.io/bash) -cF lazyload-off
78
- fi
79
- - |
80
- if [[ $CODE_COVERAGE = 1 ]]; then
81
- TESTS_ENABLE_LAZYLOAD_TYPES=1 phpdbg -qrr vendor/bin/phpunit --colors=always --verbose --coverage-clover=coverage.xml
82
- bash <(curl -s https://codecov.io/bash) -cF lazyload-on
83
- fi
72
+ - vendor/bin/phpunit --colors=always --verbose
73
+ - TESTS_ENABLE_LAZYLOAD_TYPES=1 vendor/bin/phpunit --colors=always --verbose
84
74
- if [[ $INSTALL_LARAVEL = 1 ]]; then export -f travis_retry ; tests/integration-larvavel.sh; fi
85
75
- if [[ $INSTALL_LUMEN = 1 ]]; then export -f travis_retry ; tests/integration-lumen.sh; fi
You can’t perform that action at this time.
0 commit comments