diff --git a/tests/Unish/UnishTestCase.php b/tests/Unish/UnishTestCase.php index a3053dae08..027a286a23 100644 --- a/tests/Unish/UnishTestCase.php +++ b/tests/Unish/UnishTestCase.php @@ -281,10 +281,15 @@ function fetchInstallDrupal($env = 'dev', $install = FALSE, $version_string = UN $site = "$root/sites/$env"; - // Validate + if (substr($version_string, 0, 1) == 6 && $this->db_driver(UNISH_DB_URL) == 'sqlite') { + // Validate $this->markTestSkipped("Drupal 6 does not support SQLite."); } + if ($version_string == 8) { + // We want to track Drupal 8 very closely. + $version_string == '8.0.x'; + } // Download Drupal if not already present. if (!file_exists($root)) {