Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8.8.0-beta.1 sync #155

Merged
merged 3 commits into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions _tests/tests/QITE2ETestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,13 @@ public function validate_and_normalize( string $file_path, ?callable $callback =
continue;
}

// Ignore containing "Maximum execution time of 30 seconds exceeded in" in E2E.
if ( stripos( $file_path, 'woo-e2e/' ) !== false && stripos( $debug_log['message'], 'Maximum execution time of 30 seconds exceeded in' ) !== false ) {
echo "Removing 'Maximum execution time of 30 seconds exceeded in' from debug_log.message\n";
unset( $value[ $k ] );
continue;
}

/*
* Normalize PHP debug logs captured during test runs.
*
Expand Down
Loading