All of lore.kernel.org
 help / color / mirror / Atom feed
From: jose.perez.carranza@linux.intel.com
To: yocto@yoctoproject.org
Subject: [qa-tools][PATCH 1/4] poduct/init: Add support for PackageManagement component
Date: Tue,  4 Jul 2017 17:05:59 -0500	[thread overview]
Message-ID: <20170704220602.23233-1-jose.perez.carranza@linux.intel.com> (raw)

From: Jose Perez Carranza <jose.perez.carranza@linux.intel.com>

Create package_management_issues.py product and add support to use this
product on init file.

Signed-off-by: Jose Perez Carranza <jose.perez.carranza@linux.intel.com>
---
 testopia_update/product/__init__.py                  | 2 ++
 testopia_update/product/package_management_issues.py | 4 ++++
 2 files changed, 6 insertions(+)
 create mode 100644 testopia_update/product/package_management_issues.py

diff --git a/testopia_update/product/__init__.py b/testopia_update/product/__init__.py
index 8d31a1e..30b2201 100644
--- a/testopia_update/product/__init__.py
+++ b/testopia_update/product/__init__.py
@@ -262,6 +262,7 @@ def get_products(testopia, opts, config, logger, **kwargs):
     from . import esdk
     from . import kernel
     from . import general_runtime
+    from . import package_management_issues
 
     products = []
 
@@ -277,6 +278,7 @@ def get_products(testopia, opts, config, logger, **kwargs):
     products.append(esdk.eSDKProduct(testopia, opts, logger, config, **kwargs))
     products.append(kernel.KernelProduct(testopia, opts, logger, config, **kwargs))
     products.append(general_runtime.GeneralRuntimeProduct(testopia, opts, logger, config, **kwargs))
+    products.append(package_management_issues.PackageManagementIssues(testopia, opts, logger, config, **kwargs))
     products.append(DummyProduct(testopia, opts, logger, config, **kwargs))
 
 
diff --git a/testopia_update/product/package_management_issues.py b/testopia_update/product/package_management_issues.py
new file mode 100644
index 0000000..1f3ecc7
--- /dev/null
+++ b/testopia_update/product/package_management_issues.py
@@ -0,0 +1,4 @@
+from testopia_update.product import Product
+
+class PackageManagementIssues(Product):
+    name = 'Package Management Issues'
-- 
2.11.0



             reply	other threads:[~2017-07-04 22:03 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-04 22:05 jose.perez.carranza [this message]
2017-07-04 22:06 ` [qa-tools][PATCH 2/4] scripts/full-test-cycle-wrapper: Add support for new 2.4 components jose.perez.carranza
2017-07-04 22:06 ` [qa-tools][PATCH 3/4] testopia_update: Add validation for empty sub parameters on setup jose.perez.carranza
2017-07-04 22:06 ` [qa-tools][PATCH 4/4] utils/wikimaker: Add default values jose.perez.carranza
2017-07-04 22:19 ` [qa-tools][PATCH 1/4] poduct/init: Add support for PackageManagement component Robert P. J. Day
2017-07-05 13:02   ` Jose Perez Carranza

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170704220602.23233-1-jose.perez.carranza@linux.intel.com \
    --to=jose.perez.carranza@linux.intel.com \
    --cc=yocto@yoctoproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.