summaryrefslogtreecommitdiffstats
path: root/autotest.sh
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2012-10-27 11:22:00 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2012-10-27 11:43:24 +0200
commit74665faec533430be37879bfc0ef24aa7f211f6e (patch)
treedcc15f1d0e785616b237e0bbc71040ac511b994e /autotest.sh
parent22dcd3b6a691c7a245e4d1de30f09bb17efdfceb (diff)
downloadnextcloud-server-74665faec533430be37879bfc0ef24aa7f211f6e.tar.gz
nextcloud-server-74665faec533430be37879bfc0ef24aa7f211f6e.zip
exeuting tests now on apps as well - the apps repo shall be cloned into the sub folder apps2
Diffstat (limited to 'autotest.sh')
-rwxr-xr-xautotest.sh6
1 files changed, 4 insertions, 2 deletions
diff --git a/autotest.sh b/autotest.sh
index 56296c6a513..744bcdbe8f9 100755
--- a/autotest.sh
+++ b/autotest.sh
@@ -9,7 +9,7 @@
DATADIR=data-autotest
BASEDIR=$PWD
-# create autoconfig for sqlite, mysql and (soon) postgresql
+# create autoconfig for sqlite, mysql and postgresql
cat > ./tests/autoconfig-sqlite.php <<DELIM
<?php
\$AUTOCONFIG = array (
@@ -67,7 +67,8 @@ function execute_tests {
mkdir $DATADIR
# remove the old config file
- rm -rf config/config.php
+ #rm -rf config/config.php
+ cp tests/preseed-config.php config/config.php
# drop database
if [ "$1" == "mysql" ] ; then
@@ -88,6 +89,7 @@ function execute_tests {
cd tests
rm -rf coverage-html-$1
mkdir coverage-html-$1
+ php -f enable_all.php
phpunit --log-junit autotest-results-$1.xml --coverage-clover autotest-clover-$1.xml --coverage-html coverage-html-$1
}