diff options
author | Robin Appelman <icewind@owncloud.com> | 2012-04-15 13:33:49 +0200 |
---|---|---|
committer | Robin Appelman <icewind@owncloud.com> | 2012-04-15 15:19:30 +0200 |
commit | 71cdfdcec89f5cb2bea448998dfbf791555c18f0 (patch) | |
tree | e25290622aa094693bb907ee0760974240fcbf6b /tests | |
parent | 819af69972ca005656628005ff0c9f25824758a5 (diff) | |
download | nextcloud-server-71cdfdcec89f5cb2bea448998dfbf791555c18f0.tar.gz nextcloud-server-71cdfdcec89f5cb2bea448998dfbf791555c18f0.zip |
only run tests of enabled apps
Diffstat (limited to 'tests')
-rw-r--r-- | tests/index.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/index.php b/tests/index.php index a6f678b3bc2..6dec1b050fb 100644 --- a/tests/index.php +++ b/tests/index.php @@ -30,7 +30,7 @@ require_once 'simpletest/default_reporter.php'; loadTests(dirname(__FILE__)); //load app test cases -$apps=OC_Appconfig::getApps(); +$apps=OC_App::getEnabledApps(); foreach($apps as $app){ if(is_dir(OC::$SERVERROOT.'/apps/'.$app.'/tests')){ loadTests(OC::$SERVERROOT.'/apps/'.$app.'/tests'); |