Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F18737855
D13821.id.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
942 B
Referenced Files
None
Subscribers
None
D13821.id.diff
View Options
diff --git a/src/applications/differential/customfield/DifferentialUnitField.php b/src/applications/differential/customfield/DifferentialUnitField.php
--- a/src/applications/differential/customfield/DifferentialUnitField.php
+++ b/src/applications/differential/customfield/DifferentialUnitField.php
@@ -56,8 +56,14 @@
protected function newHarbormasterMessageView(array $messages) {
foreach ($messages as $key => $message) {
- if ($message->getResult() == ArcanistUnitTestResult::RESULT_PASS) {
- unset($messages[$key]);
+ switch ($message->getResult()) {
+ case ArcanistUnitTestResult::RESULT_PASS:
+ case ArcanistUnitTestResult::RESULT_SKIP:
+ // Don't show "Pass" or "Skip" in the UI since they aren't very
+ // interesting. The user can click through to the full results if
+ // they want details.
+ unset($messages[$key]);
+ break;
}
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Oct 2 2025, 1:00 PM (4 w, 2 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
8455182
Default Alt Text
D13821.id.diff (942 B)
Attached To
Mode
D13821: Hide skipped tests by default in Differential build result summary view
Attached
Detach File
Event Timeline
Log In to Comment