This commit is contained in:
Thomas Müller 2016-01-14 10:36:46 +01:00
Родитель a2624e4e60
Коммит bec615d31b
2 изменённых файлов: 2 добавлений и 16 удалений

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

@ -26,7 +26,8 @@ before_install:
script:
# Test lint
- cd apps/$APP_NAME
- sh -c "if [ '$DB' = 'sqlite' ]; then ant test; fi"
# Test lint
- find . -name \*.php -not -path './vendor/*' -exec php -l "{}" \;
# Run phpunit tests
- phpunit --configuration phpunit.xml

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

@ -1,15 +0,0 @@
<project name="owncloud-enterprise" basedir="." default="test">
<!-- test - Tests if the code syntax is correct and executes phpunit tests -->
<target name="test">
<apply executable="php" failonerror="true">
<arg value="-l" />
<fileset dir=".">
<include name="**/*.php" />
<exclude name="**/l10n/**" />
</fileset>
</apply>
</target>
</project>