Skip to content

Commit 1f8c6cc

Browse files
authored
[HUD] Remove test insights page (#6031)
I think this is where the old visualizations for the usage log/cpu + gpu utilization lived. I clicked on a few of the links that go here, and they looked like <img width="1009" alt="image" src="https://github.com/user-attachments/assets/65777f1b-ccfe-4e8c-b82c-111e3569d445"> @yangw-dev is working on a new one
1 parent 9620f4f commit 1f8c6cc

File tree

4 files changed

+0
-460
lines changed

4 files changed

+0
-460
lines changed

torchci/components/JobLinks.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import { IssueData, JobData } from "../lib/types";
88
import CopyLink from "./CopyLink";
99
import styles from "./JobLinks.module.css";
1010
import ReproductionCommand from "./ReproductionCommand";
11-
import TestInsightsLink from "./TestInsights";
1211
import { durationDisplay, LocalTimeHuman } from "./TimeUtils";
1312

1413
export default function JobLinks({
@@ -77,11 +76,6 @@ export default function JobLinks({
7776
);
7877
}
7978

80-
const testInsightsLink = TestInsightsLink({ job: job, separator: "" });
81-
if (testInsightsLink != null) {
82-
subInfo.push(testInsightsLink);
83-
}
84-
8579
if (isFailedJob(job)) {
8680
const revertInfoCopy = RevertInfoCopy({ job: job });
8781
if (revertInfoCopy != null) {

torchci/components/TestInsights.tsx

Lines changed: 0 additions & 67 deletions
This file was deleted.

torchci/components/WorkflowBox.tsx

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ import { TestInfo } from "./additionalTestInfo/TestInfo";
1010
import JobArtifact from "./JobArtifact";
1111
import JobSummary from "./JobSummary";
1212
import LogViewer, { SearchLogViewer } from "./LogViewer";
13-
import TestInsightsLink from "./TestInsights";
1413
import { durationDisplay } from "./TimeUtils";
1514

1615
function sortJobsByConclusion(jobA: JobData, jobB: JobData): number {
@@ -56,11 +55,6 @@ function WorkflowJobSummary({
5655
);
5756
}
5857

59-
const testInsightsLink = TestInsightsLink({ job: job, separator: "" });
60-
if (testInsightsLink != null) {
61-
subInfo.push(testInsightsLink);
62-
}
63-
6458
const hasArtifacts = artifacts && artifacts.length > 0;
6559

6660
function setArtifactsToShowHelper() {

0 commit comments

Comments
 (0)