Skip to content

Commit

Permalink
Attempt to fix CS tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aristath committed Apr 24, 2024
1 parent 85e2ddc commit 18b9360
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/phpunit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
php: [ '7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3' ]
php: [ '7.4', '8.0', '8.1', '8.2', '8.3' ]

with:
os: ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions tests/WP_SQLite_Metadata_Tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public static function setUpBeforeClass(): void {
$GLOBALS['wpdb']->suppress_errors = false;
$GLOBALS['wpdb']->show_errors = true;
}
return;
}

// Before each test, we create a new database
Expand Down
1 change: 1 addition & 0 deletions tests/WP_SQLite_Query_Tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ public static function setUpBeforeClass(): void {
$GLOBALS['wpdb']->suppress_errors = false;
$GLOBALS['wpdb']->show_errors = true;
}
return;
}

/**
Expand Down
1 change: 1 addition & 0 deletions tests/WP_SQLite_Translator_Tests.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ public static function setUpBeforeClass(): void {
$GLOBALS['wpdb']->suppress_errors = false;
$GLOBALS['wpdb']->show_errors = true;
}
return;
}

// Before each test, we create a new database
Expand Down

0 comments on commit 18b9360

Please sign in to comment.