faster tests
This commit is contained in:
parent
fc2bbefcb9
commit
82ab2a8305
2 changed files with 5 additions and 2 deletions
|
@ -71,7 +71,7 @@ class ResLimitTest extends ShimmiePHPUnitTestCase {
|
|||
# other extensions' test suites
|
||||
public function tearDown() {
|
||||
parent::tearDown();
|
||||
|
||||
|
||||
global $config;
|
||||
$config->set_int("upload_min_height", -1);
|
||||
$config->set_int("upload_min_width", -1);
|
||||
|
|
|
@ -9,6 +9,9 @@
|
|||
|
||||
class VarnishPurger extends Extension {
|
||||
private function curl_purge($path) {
|
||||
// waiting for curl timeout adds ~5 minutes to unit tests
|
||||
if(defined("UNITTEST")) return;
|
||||
|
||||
$url = make_http(make_link($path));
|
||||
$ch = curl_init();
|
||||
curl_setopt($ch, CURLOPT_URL, $url);
|
||||
|
@ -17,7 +20,7 @@ class VarnishPurger extends Extension {
|
|||
$result = curl_exec($ch);
|
||||
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
|
||||
curl_close($ch);
|
||||
return $result;
|
||||
//return $result;
|
||||
}
|
||||
|
||||
public function onCommentPosting(CommentPostingEvent $event) {
|
||||
|
|
Reference in a new issue