[v2,1/3] CI: Add nop testcase

Message ID 20250917142623.2643494-2-wzh@ilbers.de
State New
Headers show
Series CI: Add 'env' testsuite | expand

Commit Message

Zhihang Wei Sept. 17, 2025, 2:26 p.m. UTC
The test_nop testcase always passes to indicate that the test
environment can start testcases.

Signed-off-by: Zhihang Wei <wzh@ilbers.de>
---
 testsuite/citest.py | 12 ++++++++++++
 1 file changed, 12 insertions(+)

Patch

diff --git a/testsuite/citest.py b/testsuite/citest.py
index 9f18a51f..22d9b580 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -18,6 +18,18 @@  except path.CmdNotFoundError:
     SKOPEO_AVAILABLE = False
 
 
+class EnvTest(CIBaseTest):
+
+    """
+    Test environment
+
+    :avocado: tags=env
+    """
+
+    def test_nop(self):
+        self.log.info("test_nop finish")
+
+
 class DevTest(CIBaseTest):
 
     """