Skip to content
Snippets Groups Projects

Issue #3441799 build tests sqlite version

Merged Ted Bowman requested to merge issue/automatic_updates-3441799:3441799-skip-build-tests into 3.1.x
1 unresolved thread

Closes #3441799

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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 }
  • Adam G-H
  • Ted Bowman added 2 commits

    added 2 commits

    • c99b9a90 - Revert "add same logic as core in shared function"
    • b7e85b87 - skip in setup

    Compare with previous version

  • Adam G-H
  • Ted Bowman added 1 commit

    added 1 commit

    Compare with previous version

  • Ted Bowman added 2 commits

    added 2 commits

    • 0b506ab7 - 1 commit from branch project:3.1.x
    • 1e3dd407 - Merge branch '3.1.x' into 3441799-skip-build-tests

    Compare with previous version

  • Ted Bowman added 1 commit

    added 1 commit

    Compare with previous version

  • merged

  • Please register or sign in to reply
    Loading