From 6a3d958b642b0719500f5ad9f55c3e1145348d44 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 16 Feb 2026 19:57:32 +0000 Subject: [PATCH 1/2] Initial plan From a5374ce17ca053fa8945b6cffca770537e7d4131 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Mon, 16 Feb 2026 19:59:18 +0000 Subject: [PATCH 2/2] Skip GPU detection test in GitHub Actions environment Co-authored-by: joone <1979160+joone@users.noreply.github.com> --- test/command.test.ts | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/test/command.test.ts b/test/command.test.ts index 1ca1cf6..0c4620b 100644 --- a/test/command.test.ts +++ b/test/command.test.ts @@ -36,12 +36,14 @@ describe("Linux Command Test", () => { });*/ // lspci | grep -i vga - it("Detect GPUs on this system", function () { - let stdout = execSync( - `MOCHA_ENV=test node ${LOZ_BIN} "Detect GPUs on this system"`, - ).toString(); - expect(stdout).to.include("VGA compatible controller"); - }); + if (GITHUB_ACTIONS === false) { + it("Detect GPUs on this system", function () { + let stdout = execSync( + `MOCHA_ENV=test node ${LOZ_BIN} "Detect GPUs on this system"`, + ).toString(); + expect(stdout).to.include("VGA compatible controller"); + }); + } if (GITHUB_ACTIONS === false) { it("Run find . -type f -exec ls -l {} + | sort -k 5 -nr | head -n 1", function () {