File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
app/modules/web/Controllers Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ before_script:
20
20
- composer self-update
21
21
- composer install --prefer-source --no-interaction --dev
22
22
23
- script : ./vendor/bin/phpunit -c ./phpunit.xml
23
+ script : ./vendor/bin/phpunit -c ./phpunit.xml --testsuite Core
24
24
25
25
after_script :
26
26
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then mv ./test/_output/coverage-clover.xml clover.xml && ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -t clover; fi
Original file line number Diff line number Diff line change @@ -94,7 +94,11 @@ private function getCookiesEnabled()
94
94
*/
95
95
private function getPlugins ()
96
96
{
97
- return $ this ->dic ->get (PluginManager::class)->getEnabledPlugins ();
97
+ if ($ this ->configData ->isInstalled ()) {
98
+ return $ this ->dic ->get (PluginManager::class)->getEnabledPlugins ();
99
+ }
100
+
101
+ return [];
98
102
}
99
103
100
104
/**
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ final class Installer extends Service
55
55
*/
56
56
const VERSION = [3 , 0 , 0 ];
57
57
const VERSION_TEXT = '3.0-beta ' ;
58
- const BUILD = 18080902 ;
58
+ const BUILD = 18080903 ;
59
59
60
60
/**
61
61
* @var DatabaseSetupInterface
Original file line number Diff line number Diff line change 9
9
processIsolation =" false"
10
10
stopOnFailure =" false" >
11
11
<testsuites >
12
- <testsuite name =" Unit " >
12
+ <testsuite name =" Core " >
13
13
<directory suffix =" .php" >./test/SP</directory >
14
+ <exclude >./test/SP/Modules</exclude >
15
+ </testsuite >
16
+ <testsuite name =" Modules" >
17
+ <directory suffix =" .php" >./test/SP/Modules</directory >
14
18
</testsuite >
15
19
</testsuites >
16
20
<filter >
You can’t perform that action at this time.
0 commit comments