From b7dbdf797a8f68e679c73c7b0eb1057e8c8ecab3 Mon Sep 17 00:00:00 2001 From: mohamad khawam Date: Thu, 29 Feb 2024 00:47:04 -0500 Subject: [PATCH] added opensuse test --- .github/workflows/integration.yml | 2 +- tests/computers.ts | 21 +++++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 2018e5f..80c6981 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -10,7 +10,7 @@ on: branches: ["main"] jobs: - build: + test: runs-on: self-hosted strategy: diff --git a/tests/computers.ts b/tests/computers.ts index 54761bb..7d9d2fe 100644 --- a/tests/computers.ts +++ b/tests/computers.ts @@ -89,6 +89,27 @@ const computers: Server[] = [ }, ], }, + { + ipaddress: "192.168.15.15", + Name: "Opensuse 15.4", + "OS Type": "linux", + domain: "", + password_changes: 0, + users: [ + { + domain: "", + failedPasswords: [], + hostname: "Opensuse 15.4", + ipaddress: "192.168.15.15", + password: defaultPassword || "Password123", + password_changes: 0, + ssh_key: false, + user_id: "Opensuse 15.4", + username: "root", + oldPasswords: [], + }, + ], + }, ]; export { computers };