Issue #3441799 build tests sqlite version
1 unresolved thread
Closes #3441799
Merge request reports
Activity
85 86 ]; 86 87 } 87 88 89 /** 90 * Build tests cannot be run if Sqlite minimum version is not met. 91 */ 92 protected function skipIfSqliteIsUnsupported(): void { 93 $sqlite = (new \PDO('sqlite::memory:'))->query('select sqlite_version()')->fetch()[0]; 94 if (version_compare($sqlite, Tasks::SQLITE_MINIMUM_VERSION) < 0) { 95 $this->markTestSkipped(); 96 } changed this line in version 2 of the diff
- Resolved by Ted Bowman
added 2 commits
- Resolved by Ted Bowman
Please register or sign in to reply