This commit is contained in:
Bernhard Posselt 2015-08-10 16:47:56 +02:00
Родитель 300f22163b
Коммит 6a489df47a
4 изменённых файлов: 9 добавлений и 7 удалений

Различия файлов скрыты, потому что одна или несколько строк слишком длинны

Просмотреть файл

@ -3,10 +3,12 @@
# exit if any test fails
set -e
phpunit -c phpunit.xml
phpunit -c phpunit.integration.xml
# update checksums
cd js
grunt js-unit
grunt cachebuster
cd ..
phpunit -c phpunit.xml
phpunit -c phpunit.integration.xml
git add appinfo/checksum.json

Просмотреть файл

@ -52,11 +52,11 @@ class VerifyInstall extends Command {
}
}
$output->writeln("\n\n");
$output->writeln("\n");
if (count($errors) > 0 || count($missing) > 0) {
$output->writeln('Installation verified, encountered multiple ' .
'errors: ');
$output->writeln('<error>Installation verified, encountered ' .
'multiple errors: </error>');
foreach ($missing as $path) {
$output->writeln('<error>' . $path . ' is missing!</error>');
}

Просмотреть файл

@ -25,7 +25,7 @@ class CommandTest extends \PHPUnit_Framework_TestCase {
}
public function testValidateInstall() {
$command = $this->corePath . 'occ news:validate-install';
$command = $this->corePath . 'occ news:verify-install';
exec($command, $_, $success);
$this->assertSame(0, $success);