Skip to content

Commit

Permalink
[HUD] Remove test insights page (#6031)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
clee2000 authored Dec 11, 2024
1 parent 9620f4f commit 1f8c6cc
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 460 deletions.
6 changes: 0 additions & 6 deletions torchci/components/JobLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { IssueData, JobData } from "../lib/types";
import CopyLink from "./CopyLink";
import styles from "./JobLinks.module.css";
import ReproductionCommand from "./ReproductionCommand";
import TestInsightsLink from "./TestInsights";
import { durationDisplay, LocalTimeHuman } from "./TimeUtils";

export default function JobLinks({
Expand Down Expand Up @@ -77,11 +76,6 @@ export default function JobLinks({
);
}

const testInsightsLink = TestInsightsLink({ job: job, separator: "" });
if (testInsightsLink != null) {
subInfo.push(testInsightsLink);
}

if (isFailedJob(job)) {
const revertInfoCopy = RevertInfoCopy({ job: job });
if (revertInfoCopy != null) {
Expand Down
67 changes: 0 additions & 67 deletions torchci/components/TestInsights.tsx

This file was deleted.

6 changes: 0 additions & 6 deletions torchci/components/WorkflowBox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ import { TestInfo } from "./additionalTestInfo/TestInfo";
import JobArtifact from "./JobArtifact";
import JobSummary from "./JobSummary";
import LogViewer, { SearchLogViewer } from "./LogViewer";
import TestInsightsLink from "./TestInsights";
import { durationDisplay } from "./TimeUtils";

function sortJobsByConclusion(jobA: JobData, jobB: JobData): number {
Expand Down Expand Up @@ -56,11 +55,6 @@ function WorkflowJobSummary({
);
}

const testInsightsLink = TestInsightsLink({ job: job, separator: "" });
if (testInsightsLink != null) {
subInfo.push(testInsightsLink);
}

const hasArtifacts = artifacts && artifacts.length > 0;

function setArtifactsToShowHelper() {
Expand Down
Loading

0 comments on commit 1f8c6cc

Please sign in to comment.