File tree Expand file tree Collapse file tree 4 files changed +40
-1
lines changed Expand file tree Collapse file tree 4 files changed +40
-1
lines changed Original file line number Diff line number Diff line change 1
1
vendor
2
2
composer.lock
3
- .idea
3
+ .idea
4
+ /build /
Original file line number Diff line number Diff line change @@ -24,6 +24,9 @@ before-install:
24
24
install :
25
25
- COMPOSER_MEMORY_LIMIT=-1 composer install --no-interaction
26
26
27
+ script :
28
+ - phpunit
29
+
27
30
notifications :
28
31
email :
29
32
on_success : always
Original file line number Diff line number Diff line change 29
29
"symfony/http-foundation" : " >=2.8.0" ,
30
30
"illuminate/pagination" : " >=5.0.0"
31
31
},
32
+ "require-dev" : {
33
+ "phpunit/phpunit" : " ~4.0"
34
+ },
32
35
"autoload" : {
33
36
"psr-4" : {
34
37
"Webklex\\ PHPIMAP\\ " : " src"
39
42
"Tests\\ " : " tests"
40
43
}
41
44
},
45
+ "scripts" : {
46
+ "test" : " phpunit"
47
+ },
42
48
"extra" : {
43
49
"branch-alias" : {
44
50
"dev-master" : " 1.0-dev"
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+ <phpunit bootstrap =" vendor/autoload.php"
3
+ backupGlobals =" false"
4
+ backupStaticAttributes =" false"
5
+ colors =" true"
6
+ verbose =" true"
7
+ convertErrorsToExceptions =" true"
8
+ convertNoticesToExceptions =" true"
9
+ convertWarningsToExceptions =" true"
10
+ processIsolation =" false"
11
+ stopOnFailure =" false" >
12
+ <testsuites >
13
+ <testsuite name =" Helpers Test Suite" >
14
+ <directory >tests</directory >
15
+ </testsuite >
16
+ </testsuites >
17
+ <filter >
18
+ <whitelist >
19
+ <directory suffix =" .php" >src/</directory >
20
+ </whitelist >
21
+ </filter >
22
+ <logging >
23
+ <log type =" tap" target =" build/report.tap" />
24
+ <log type =" junit" target =" build/report.junit.xml" />
25
+ <log type =" coverage-html" target =" build/coverage" />
26
+ <log type =" coverage-text" target =" build/coverage.txt" />
27
+ <log type =" coverage-clover" target =" build/logs/clover.xml" />
28
+ </logging >
29
+ </phpunit >
You can’t perform that action at this time.
0 commit comments