[16/23] CI: Do not include testsuites into each other

Message ID 20240325155540.4162990-17-amikan@ilbers.de
State New
Headers show
Series Additional CI improvements | expand

Commit Message

Anton Mikanovich March 25, 2024, 3:55 p.m. UTC
From now on fast testsuite will not also execute dev, standard/full
will not execute also fast and dev.
The same coverage should be done by running several testsuites.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 testsuite/citest.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Patch

diff --git a/testsuite/citest.py b/testsuite/citest.py
index 799e742d..5fb3ae41 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -22,7 +22,7 @@  class Dev(CIBaseTest):
     """
     Developer's test
 
-    :avocado: tags=dev,fast,standard,full
+    :avocado: tags=dev
     """
     def test_dev_min(self):
         targets = [
@@ -115,7 +115,7 @@  class Fast(CIBaseTest):
     """
     Start fast build for the defined set of configurations
 
-    :avocado: tags=fastbase,fast,standard,full
+    :avocado: tags=fastbase,fast
     """
     def test_fast_min(self):
         targets = [
@@ -370,7 +370,7 @@  class ContainerImage(CIBaseTest):
     """
     Test containerized images creation
 
-    :avocado: tags=containerbuild,fast,standard,full,container
+    :avocado: tags=containerbuild,fast,container
     """
     @skipUnless(UMOCI_AVAILABLE and SKOPEO_AVAILABLE, 'umoci/skopeo not found')
     def test_container_image(self):
@@ -388,7 +388,7 @@  class ContainerSdk(CIBaseTest):
     """
     Test SDK container image creation
 
-    :avocado: tags=containersdk,fast,standard,full,container
+    :avocado: tags=containersdk,fast,container
     """
     @skipUnless(UMOCI_AVAILABLE and SKOPEO_AVAILABLE, 'umoci/skopeo not found')
     def test_container_sdk(self):