Files
mongo-php-driver/tests/utils/basic-skipif.inc
T
Hannes Magnusson ea23e5d3fe PHPC-128: MO presets directory needs to be configurable
various other travis fixes, skipping etc
2015-01-06 21:56:43 -08:00

20 lines
436 B
PHP

<?php
if ( ! extension_loaded("phongo")) {
exit("skip phongo not loaded");
}
require __DIR__ . "/" . "basic.inc";
$testdir = basename(dirname(realpath($_SERVER["SCRIPT_FILENAME"])));
switch($testdir){
case "replicaset":
case "connect":
if (!$orch->ping() || getenv("TRAVIS") || !MONGODB_STANDALONE_AUTH_URI) {
exit("skip these tests in $testdir require Mongo Orchestration + vagrant");
}
break;
}
CLEANUP();