From 80ae08e2dc08f97321c0b09245c726f4f314bcd4 Mon Sep 17 00:00:00 2001 From: SrikanthMyakam Date: Sat, 23 Nov 2024 11:31:45 +0530 Subject: [PATCH] Update constants.py --- lisa/util/constants.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lisa/util/constants.py b/lisa/util/constants.py index 771c5317eb..b4ff441ce6 100644 --- a/lisa/util/constants.py +++ b/lisa/util/constants.py @@ -178,3 +178,7 @@ SIGINT = 2 SIGTERM = 15 SIGKILL = 9 + +# StorageInterfaceTypes +STORAGE_INTERFACE_TYPE_NVME = "NVMe" +STORAGE_INTERFACE_TYPE_SCSI = "SCSI"