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

Message ID 20251015140846.1953962-2-wzh@ilbers.de
State Accepted, archived
Headers show
Series [v2,RESEND,1/3] CI: Add nop testcase | expand

Commit Message

Zhihang Wei Oct. 15, 2025, 2:08 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 c99b2fb3..9bdc9620 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -24,6 +24,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):
 
     """