File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ install:
25
25
- composer install --no-interaction --prefer-source
26
26
27
27
script :
28
- - ./vendor/bin/tester -p php tests
28
+ - composer test
29
29
- ./parallel-lint --exclude vendor --exclude tests/examples --no-colors .
30
30
- ./parallel-lint --exclude vendor --exclude tests/examples .
31
31
- if [[ "$SNIFF" == "1" ]]; then ./vendor/bin/phpcs;fi
Original file line number Diff line number Diff line change @@ -25,6 +25,6 @@ install:
25
25
- php composer.phar install --prefer-source --no-interaction
26
26
27
27
test_script :
28
- - vendor\bin\tester tests -p php
28
+ - php composer.phar test
29
29
- php parallel-lint --exclude vendor --exclude tests\examples --no-colors .
30
30
- php parallel-lint --exclude vendor --exclude tests\examples .
Original file line number Diff line number Diff line change 35
35
},
36
36
"bin" : [
37
37
" parallel-lint"
38
- ]
38
+ ],
39
+ "scripts" : {
40
+ "test" : " @php vendor/bin/tester -p php tests"
41
+ },
42
+ "scripts-descriptions" : {
43
+ "test" : " Run all tests!"
44
+ }
39
45
}
You can’t perform that action at this time.
0 commit comments