Skip to content

Commit

Permalink
Use dev version of D8 when testing.
Browse files Browse the repository at this point in the history
  • Loading branch information
weitzman committed Nov 26, 2014
1 parent 53e49c1 commit fdfe505
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tests/Unish/UnishTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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)) {
Expand Down

0 comments on commit fdfe505

Please sign in to comment.