FailedConsole Output

[osmclient-stage_2_master] Running shell script
+ runuser jenkins -c devops-stages/stage-test.sh
Launching tox
ERROR: invocation failed (exit code 1), logfile: /tmp/.tox/black/log/black-0.log
================================== log start ===================================
black create: /tmp/.tox/black
black installdeps: black==24.1.1
black installed: black==24.1.1,click==8.1.7,mypy-extensions==1.0.0,packaging==24.1,pathspec==0.12.1,platformdirs==4.2.2,tomli==2.0.1,typing_extensions==4.12.2
black run-test-pre: PYTHONHASHSEED='1653565118'
black run-test: commands[0] | black --check --diff osmclient/
--- /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/infra_config_profile.py	2024-06-12 15:43:18.183939+00:00
+++ /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/infra_config_profile.py	2024-06-12 15:43:31.700039+00:00
@@ -21,11 +21,14 @@
 import logging
 
 logger = logging.getLogger("osmclient")
 
 
-@click.command(name="infra-config-profile-create", short_help="creates an Infra Config Profile to OSM")
+@click.command(
+    name="infra-config-profile-create",
+    short_help="creates an Infra Config Profile to OSM",
+)
 @click.argument("name")
 @click.option("--description", default=None, help="human readable description")
 @click.pass_context
 def infra_config_profile_create(ctx, name, **kwargs):
     """creates an Infra Config Profile to OSM
@@ -37,11 +40,13 @@
     infra_config_profile = kwargs
     infra_config_profile["name"] = name
     ctx.obj.infra_config_profile.create(name, infra_config_profile)
 
 
-@click.command(name="infra-config-profile-delete", short_help="deletes an Infra Config Profile")
+@click.command(
+    name="infra-config-profile-delete", short_help="deletes an Infra Config Profile"
+)
 @click.argument("name")
 @click.option(
     "--force", is_flag=True, help="forces the deletion from the DB (not recommended)"
 )
 @click.pass_context
would reformat /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/infra_config_profile.py
--- /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/oka.py	2024-06-12 15:43:18.183939+00:00
+++ /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/oka.py	2024-06-12 15:43:31.721441+00:00
@@ -21,11 +21,13 @@
 import logging
 
 logger = logging.getLogger("osmclient")
 
 
-@click.command(name="oka-add", short_help="adds an OSM Kubernetes Application (OKA) to OSM")
+@click.command(
+    name="oka-add", short_help="adds an OSM Kubernetes Application (OKA) to OSM"
+)
 @click.argument("name")
 @click.argument("pkg_folder")
 @click.pass_context
 def oka_add(ctx, name, pkg_folder):
     """adds an OKA to OSM
@@ -37,11 +39,13 @@
     # TODO: create a targz file from the folder
     filename = pkg_folder
     ctx.obj.oka.create(name, filename)
 
 
-@click.command(name="oka-delete", short_help="deletes an OSM Kubernetes Application (OKA)")
+@click.command(
+    name="oka-delete", short_help="deletes an OSM Kubernetes Application (OKA)"
+)
 @click.argument("name")
 @click.option(
     "--force", is_flag=True, help="forces the deletion from the DB (not recommended)"
 )
 @click.pass_context
would reformat /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/oka.py
--- /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/infra_controller_profile.py	2024-06-12 15:43:18.183939+00:00
+++ /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/infra_controller_profile.py	2024-06-12 15:43:31.731972+00:00
@@ -21,11 +21,14 @@
 import logging
 
 logger = logging.getLogger("osmclient")
 
 
-@click.command(name="infra-controller-profile-create", short_help="creates an Infra Controller Profile to OSM")
+@click.command(
+    name="infra-controller-profile-create",
+    short_help="creates an Infra Controller Profile to OSM",
+)
 @click.argument("name")
 @click.option("--description", default=None, help="human readable description")
 @click.pass_context
 def infra_controller_profile_create(ctx, name, description, **kwargs):
     """creates an Infra Controller Profile to OSM
@@ -38,11 +41,14 @@
     infra_controller_profile["name"] = name
     infra_controller_profile["description"] = description
     ctx.obj.infra_controller_profile.create(name, infra_controller_profile)
 
 
-@click.command(name="infra-controller-profile-delete", short_help="deletes an Infra Controller Profile")
+@click.command(
+    name="infra-controller-profile-delete",
+    short_help="deletes an Infra Controller Profile",
+)
 @click.argument("name")
 @click.option(
     "--force", is_flag=True, help="forces the deletion from the DB (not recommended)"
 )
 @click.pass_context
would reformat /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/infra_controller_profile.py
--- /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/resource_profile.py	2024-06-12 15:43:18.183939+00:00
+++ /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/resource_profile.py	2024-06-12 15:43:31.786860+00:00
@@ -21,11 +21,13 @@
 import logging
 
 logger = logging.getLogger("osmclient")
 
 
-@click.command(name="resource-profile-create", short_help="creates an Resource Profile to OSM")
+@click.command(
+    name="resource-profile-create", short_help="creates an Resource Profile to OSM"
+)
 @click.argument("name")
 @click.option("--description", default=None, help="human readable description")
 @click.pass_context
 def resource_profile_create(ctx, name, **kwargs):
     """creates an Resource Profile to OSM
would reformat /home/jenkins/workspace/osmclient-stage_2_master/osmclient/cli_commands/resource_profile.py
--- /home/jenkins/workspace/osmclient-stage_2_master/osmclient/sol005/client.py	2024-06-12 15:43:18.187939+00:00
+++ /home/jenkins/workspace/osmclient-stage_2_master/osmclient/sol005/client.py	2024-06-12 15:43:32.101325+00:00
@@ -108,14 +108,20 @@
         self.package_tool = package_tool.PackageTool(client=self)
         self.subscription = subscription.Subscription(self._http_client, client=self)
         self.ksu = ksu.KSU(self._http_client, client=self)
         self.ksu_package = ksu_package.KSUPackage(self._http_client, client=self)
         self.oka = oka.OKA(self._http_client, client=self)
-        self.infra_controller_profile = infra_controller_profile.InfraControllerProfile(self._http_client, client=self)
-        self.infra_config_profile = infra_config_profile.InfraConfigProfile(self._http_client, client=self)
+        self.infra_controller_profile = infra_controller_profile.InfraControllerProfile(
+            self._http_client, client=self
+        )
+        self.infra_config_profile = infra_config_profile.InfraConfigProfile(
+            self._http_client, client=self
+        )
         self.app_profile = app_profile.AppProfile(self._http_client, client=self)
-        self.resource_profile = resource_profile.ResourceProfile(self._http_client, client=self)
+        self.resource_profile = resource_profile.ResourceProfile(
+            self._http_client, client=self
+        )
         """
         self.vca = vca.Vca(http_client, client=self, **kwargs)
         self.utils = utils.Utils(http_client, **kwargs)
         """
 
would reformat /home/jenkins/workspace/osmclient-stage_2_master/osmclient/sol005/client.py

Oh no! 💥 💔 💥
5 files would be reformatted, 76 files would be left unchanged.
ERROR: InvocationError for command /tmp/.tox/black/bin/black --check --diff osmclient/ (exited with code 1)

=================================== log end ====================================
✖ FAIL black in 6.407 seconds
ERROR: invocation failed (exit code 1), logfile: /tmp/.tox/flake8/log/flake8-0.log
================================== log start ===================================
flake8 create: /tmp/.tox/flake8
flake8 installdeps: flake8==7.0.0
flake8 develop-inst: /home/jenkins/workspace/osmclient-stage_2_master
flake8 installed: flake8==7.0.0,mccabe==0.7.0,-e git+https://osm.etsi.org/gerrit/osm/osmclient.git@6ba3bdeae8d122439e64bdb668b2e8453edf6551#egg=osmclient,pycodestyle==2.11.1,pyflakes==3.2.0
flake8 run-test-pre: PYTHONHASHSEED='1066007280'
flake8 run-test: commands[0] | flake8 osmclient/ setup.py
osmclient/scripts/osm.py:19:1: F401 'osmclient.cli_commands.ksu_package' imported but unused
from osmclient.cli_commands import (
^
ERROR: InvocationError for command /tmp/.tox/flake8/bin/flake8 osmclient/ setup.py (exited with code 1)

=================================== log end ====================================
✖ FAIL flake8 in 8.878 seconds
✔ OK safety in 23.07 seconds
safety create: /tmp/.tox/safety
safety installdeps: -r/home/jenkins/workspace/osmclient-stage_2_master/requirements.txt, safety
safety develop-inst: /home/jenkins/workspace/osmclient-stage_2_master
safety installed: annotated-types==0.7.0,Authlib==1.3.1,certifi==2023.7.22,cffi==1.16.0,charset-normalizer==3.2.0,click==8.1.7,cryptography==42.0.8,dparse==0.6.4b0,idna==3.4,Jinja2==3.1.2,jsonpath-ng==1.6.0,markdown-it-py==3.0.0,MarkupSafe==2.1.3,marshmallow==3.21.3,mdurl==0.1.2,-e git+https://osm.etsi.org/gerrit/osm/osmclient.git@6ba3bdeae8d122439e64bdb668b2e8453edf6551#egg=osmclient,packaging==23.1,ply==3.11,prettytable==3.9.0,pycparser==2.22,pydantic==2.7.4,pydantic_core==2.18.4,Pygments==2.18.0,python-magic==0.4.27,PyYAML==6.0.1,requests==2.31.0,rich==13.7.1,ruamel.yaml==0.18.6,ruamel.yaml.clib==0.2.8,safety==3.2.3,safety-schemas==0.0.2,shellingham==1.5.4,tomli==2.0.1,typer==0.12.3,typing_extensions==4.12.2,urllib3==2.0.5,verboselogs==1.7,wcwidth==0.2.6
safety run-test-pre: PYTHONHASHSEED='824436823'
safety run-test: commands[0] | - safety check --full-report
+==============================================================================+

                               /$$$$$$            /$$
                              /$$__  $$          | $$
           /$$$$$$$  /$$$$$$ | $$  \__//$$$$$$  /$$$$$$   /$$   /$$
          /$$_____/ |____  $$| $$$$   /$$__  $$|_  $$_/  | $$  | $$
         |  $$$$$$   /$$$$$$$| $$_/  | $$$$$$$$  | $$    | $$  | $$
          \____  $$ /$$__  $$| $$    | $$_____/  | $$ /$$| $$  | $$
          /$$$$$$$/|  $$$$$$$| $$    |  $$$$$$$  |  $$$$/|  $$$$$$$
         |_______/  \_______/|__/     \_______/   \___/   \____  $$
                                                          /$$  | $$
                                                         |  $$$$$$/
  by safetycli.com                                        \______/

+==============================================================================+

 REPORT 

  Safety is using PyUp's free open-source vulnerability database. This
data is 30 days old and limited. 
  For real-time enhanced vulnerability data, fix recommendations, severity
reporting, cybersecurity support, team and project policy management and more
sign up at https://pyup.io or email sales@pyup.io

  Safety v3.2.3 is scanning for Vulnerabilities...
  Scanning dependencies in your environment:

  -> /tmp/.tox/safety/lib/python3.10/site-packages
  -> /home/jenkins/workspace/osmclient-stage_2_master
  -> /usr/lib/python310.zip
  -> /usr/lib/python3.10
  -> /tmp/.tox/safety/bin
  -> /usr/lib/python3.10/lib-dynload

  Using open-source vulnerability database
  Found and scanned 41 packages
  Timestamp 2024-06-12 15:43:48
  6 vulnerabilities reported
  0 vulnerabilities ignored

+==============================================================================+
 VULNERABILITIES REPORTED 
+==============================================================================+

-> Vulnerability found in wheel version 0.37.1
   Vulnerability ID: 51499
   Affected spec: <0.38.1
   ADVISORY: Wheel 0.38.1 includes a fix for CVE-2022-40898: An issue
   discovered in Python Packaging Authority (PyPA) Wheel 0.37.1 and earlier
   allows remote attackers to cause a denial of service via attacker
   controlled input to wheel cli.https://pyup.io/posts/pyup-discovers-redos-
   vulnerabilities-in-top-python-packages
   CVE-2022-40898
   For more information about this vulnerability, visit
   https://data.safetycli.com/v/51499/97c
   To ignore this vulnerability, use PyUp vulnerability id 51499 in safety’s
   ignore command-line argument or add the ignore to your safety policy file.


-> Vulnerability found in urllib3 version 2.0.5
   Vulnerability ID: 61893
   Affected spec: >=2.0.0a1,<2.0.7
   ADVISORY: Urllib3 1.26.18 and 2.0.7 include a fix for
   CVE-2023-45803: Request body not stripped after redirect from 303 status
   changes request method to GET.https://github.com/urllib3/urllib3/security/
   advisories/GHSA-g4mx-q9vg-27p4
   CVE-2023-45803
   For more information about this vulnerability, visit
   https://data.safetycli.com/v/61893/97c
   To ignore this vulnerability, use PyUp vulnerability id 61893 in safety’s
   ignore command-line argument or add the ignore to your safety policy file.


-> Vulnerability found in pip version 22.0.2
   Vulnerability ID: 62044
   Affected spec: <23.3
   ADVISORY: Affected versions of Pip are vulnerable to Command
   Injection. When installing a package from a Mercurial VCS URL (ie "pip
   install hg+...") with pip prior to v23.3, the specified Mercurial revision
   could be used to inject arbitrary configuration options to the "hg clone"
   call (ie "--config"). Controlling the Mercurial configuration can modify
   how and which repository is installed. This vulnerability does not affect
   users who aren't installing from Mercurial.
   CVE-2023-5752
   For more information about this vulnerability, visit
   https://data.safetycli.com/v/62044/97c
   To ignore this vulnerability, use PyUp vulnerability id 62044 in safety’s
   ignore command-line argument or add the ignore to your safety policy file.


-> Vulnerability found in idna version 3.4
   Vulnerability ID: 67895
   Affected spec: <3.7
   ADVISORY: CVE-2024-3651 impacts the idna.encode() function, where
   a specially crafted argument could lead to significant resource
   consumption, causing a denial-of-service. In version 3.7, this function
   has been updated to reject such inputs efficiently, minimizing resource
   use. A practical workaround involves enforcing a maximum domain name
   length of 253 characters before encoding, as the vulnerability is
   triggered by unusually large inputs that normal operations wouldn't
   encounter.
   CVE-2024-3651
   For more information about this vulnerability, visit
   https://data.safetycli.com/v/67895/97c
   To ignore this vulnerability, use PyUp vulnerability id 67895 in safety’s
   ignore command-line argument or add the ignore to your safety policy file.


-> Vulnerability found in jinja2 version 3.1.2
   Vulnerability ID: 70612
   Affected spec: >=0
   ADVISORY: In Jinja2, the from_string function is prone to Server
   Side Template Injection (SSTI) where it takes the "source" parameter as a
   template object, renders it, and then returns it. The attacker can exploit
   it with {{INJECTION COMMANDS}} in a URI. NOTE: The maintainer and multiple
   third parties believe that this vulnerability isn't valid because users
   shouldn't use untrusted templates without sandboxing.
   CVE-2019-8341
   For more information about this vulnerability, visit
   https://data.safetycli.com/v/70612/97c
   To ignore this vulnerability, use PyUp vulnerability id 70612 in safety’s
   ignore command-line argument or add the ignore to your safety policy file.


-> Vulnerability found in jinja2 version 3.1.2
   Vulnerability ID: 64227
   Affected spec: <3.1.3
   ADVISORY: Jinja2 before 3.1.3 is affected by a Cross-Site
   Scripting vulnerability. Special placeholders in the template allow
   writing code similar to Python syntax. It is possible to inject arbitrary
   HTML attributes into the rendered HTML template. The Jinja 'xmlattr'
   filter can be abused to inject arbitrary HTML attribute keys and values,
   bypassing the auto escaping mechanism and potentially leading to XSS. It
   may also be possible to bypass attribute validation checks if they are
   blacklist-based.
   CVE-2024-22195
   For more information about this vulnerability, visit
   https://data.safetycli.com/v/64227/97c
   To ignore this vulnerability, use PyUp vulnerability id 64227 in safety’s
   ignore command-line argument or add the ignore to your safety policy file.


+==============================================================================+
   REMEDIATIONS

  6 vulnerabilities were reported in 5 packages. For detailed remediation & 
  fix recommendations, upgrade to a commercial license. 

+==============================================================================+

 Scan was completed. 6 vulnerabilities were reported. 

+==============================================================================+

  Safety is using PyUp's free open-source vulnerability database. This
data is 30 days old and limited. 
  For real-time enhanced vulnerability data, fix recommendations, severity
reporting, cybersecurity support, team and project policy management and more
sign up at https://pyup.io or email sales@pyup.io

+==============================================================================+

✔ OK cover in 52.11 seconds
cover create: /tmp/.tox/cover
cover installdeps: -r/home/jenkins/workspace/osmclient-stage_2_master/requirements.txt, -r/home/jenkins/workspace/osmclient-stage_2_master/requirements-dev.txt, -r/home/jenkins/workspace/osmclient-stage_2_master/requirements-test.txt
cover develop-inst: /home/jenkins/workspace/osmclient-stage_2_master
cover installed: certifi==2023.7.22,charset-normalizer==3.2.0,click==8.1.7,coverage==7.3.1,enum34==1.1.10,idna==3.4,Jinja2==3.1.2,jsonpath-ng==1.6.0,lxml==5.2.2,MarkupSafe==2.1.3,mock==5.1.0,nose2==0.13.0,osm-im @ git+https://osm.etsi.org/gerrit/osm/IM.git@90ffed24477703d8b77f8805c567cdaba0798ea6,-e git+https://osm.etsi.org/gerrit/osm/osmclient.git@6ba3bdeae8d122439e64bdb668b2e8453edf6551#egg=osmclient,packaging==23.1,ply==3.11,prettytable==3.9.0,pyang==2.5.3,pyangbind==0.8.3.post1,python-magic==0.4.27,PyYAML==6.0.1,regex==2024.5.15,requests==2.31.0,six==1.16.0,urllib3==2.0.5,verboselogs==1.7,wcwidth==0.2.6
cover run-test-pre: PYTHONHASHSEED='325174591'
cover run-test: commands[0] | sh -c 'rm -f nosetests.xml'
cover run-test: commands[1] | coverage erase
cover run-test: commands[2] | nose2 -C --coverage osmclient
....................................
----------------------------------------------------------------------
Ran 36 tests in 10.399s

OK
Name                                                 Stmts   Miss  Cover
------------------------------------------------------------------------
osmclient/__init__.py                                    0      0   100%
osmclient/cli_commands/__init__.py                       0      0   100%
osmclient/cli_commands/alarms.py                        87     53    39%
osmclient/cli_commands/app_profile.py                   45     22    51%
osmclient/cli_commands/infra_config_profile.py          45     22    51%
osmclient/cli_commands/infra_controller_profile.py      46     23    50%
osmclient/cli_commands/k8scluster.py                   127     76    40%
osmclient/cli_commands/ksu.py                           48     22    54%
osmclient/cli_commands/ksu_package.py                   43     20    53%
osmclient/cli_commands/metrics.py                       31     18    42%
osmclient/cli_commands/netslice_instance.py            119     56    53%
osmclient/cli_commands/netslice_ops.py                  51     25    51%
osmclient/cli_commands/netslice_template.py            113     51    55%
osmclient/cli_commands/nfpkg.py                        209     93    56%
osmclient/cli_commands/ns.py                           185    143    23%
osmclient/cli_commands/nslcm.py                        194    138    29%
osmclient/cli_commands/nslcm_ops.py                     77     52    32%
osmclient/cli_commands/nspkg.py                        137     64    53%
osmclient/cli_commands/oka.py                           43     20    53%
osmclient/cli_commands/other.py                         11      3    73%
osmclient/cli_commands/packages.py                      89     39    56%
osmclient/cli_commands/pdus.py                         117     74    37%
osmclient/cli_commands/rbac.py                         221    131    41%
osmclient/cli_commands/repo.py                         227    122    46%
osmclient/cli_commands/resource_profile.py              45     22    51%
osmclient/cli_commands/sdnc.py                         104     53    49%
osmclient/cli_commands/subscriptions.py                 59     29    51%
osmclient/cli_commands/utils.py                         53     39    26%
osmclient/cli_commands/vca.py                          156     16    90%
osmclient/cli_commands/vim.py                          183     67    63%
osmclient/cli_commands/vnf.py                          114     80    30%
osmclient/cli_commands/wim.py                          101     56    45%
osmclient/client.py                                     27     21    22%
osmclient/common/__init__.py                             0      0   100%
osmclient/common/exceptions.py                           6      0   100%
osmclient/common/http.py                                71     58    18%
osmclient/common/package_handling.py                    28     20    29%
osmclient/common/package_tool.py                       442    397    10%
osmclient/common/print_output.py                        47     36    23%
osmclient/common/sol004_package.py                      36     17    53%
osmclient/common/sol007_package.py                      32     15    53%
osmclient/common/sol_package.py                        158    120    24%
osmclient/common/test/test_utils.py                     36      0   100%
osmclient/common/utils.py                               80     54    32%
osmclient/common/wait.py                                86     66    23%
osmclient/scripts/__init__.py                            0      0   100%
osmclient/scripts/osm.py                               208    187    10%
osmclient/scripts/tests/tests_vca.py                   100      0   100%
osmclient/scripts/tests/tests_vim.py                    62      0   100%
osmclient/sol005/__init__.py                             0      0   100%
osmclient/sol005/app_profile.py                         20     14    30%
osmclient/sol005/client.py                             119     82    31%
osmclient/sol005/http.py                               160    137    14%
osmclient/sol005/infra_config_profile.py                20     14    30%
osmclient/sol005/infra_controller_profile.py            19     13    32%
osmclient/sol005/k8scluster.py                         118    101    14%
osmclient/sol005/ksu.py                                 28     22    21%
osmclient/sol005/ksu_package.py                         22     15    32%
osmclient/sol005/ns.py                                 382    353     8%
osmclient/sol005/nsd.py                                124    103    17%
osmclient/sol005/nsi.py                                208    189     9%
osmclient/sol005/nst.py                                127    107    16%
osmclient/sol005/oka.py                                 22     15    32%
osmclient/sol005/osm_api_object.py                     104     87    16%
osmclient/sol005/osmrepo.py                            309    260    16%
osmclient/sol005/package.py                             63     50    21%
osmclient/sol005/pdud.py                                93     78    16%
osmclient/sol005/project.py                             74     61    18%
osmclient/sol005/repo.py                                74     60    19%
osmclient/sol005/resource_profile.py                    20     14    30%
osmclient/sol005/role.py                               117    103    12%
osmclient/sol005/sdncontroller.py                       94     77    18%
osmclient/sol005/subscription.py                        69     56    19%
osmclient/sol005/tests/test_osmrepo.py                  13      0   100%
osmclient/sol005/tests/test_vca.py                     117      0   100%
osmclient/sol005/user.py                               143    131     8%
osmclient/sol005/vca.py                                 73      0   100%
osmclient/sol005/vim.py                                157    138    12%
osmclient/sol005/vnf.py                                 56     46    18%
osmclient/sol005/vnfd.py                               207    181    13%
osmclient/sol005/wim.py                                139    120    14%
------------------------------------------------------------------------
TOTAL                                                 7790   5247    33%

cover run-test: commands[3] | coverage report '--omit=*tests*'
Name                                                 Stmts   Miss  Cover
------------------------------------------------------------------------
osmclient/__init__.py                                    0      0   100%
osmclient/cli_commands/__init__.py                       0      0   100%
osmclient/cli_commands/alarms.py                        87     53    39%
osmclient/cli_commands/app_profile.py                   45     22    51%
osmclient/cli_commands/infra_config_profile.py          45     22    51%
osmclient/cli_commands/infra_controller_profile.py      46     23    50%
osmclient/cli_commands/k8scluster.py                   127     76    40%
osmclient/cli_commands/ksu.py                           48     22    54%
osmclient/cli_commands/ksu_package.py                   43     20    53%
osmclient/cli_commands/metrics.py                       31     18    42%
osmclient/cli_commands/netslice_instance.py            119     56    53%
osmclient/cli_commands/netslice_ops.py                  51     25    51%
osmclient/cli_commands/netslice_template.py            113     51    55%
osmclient/cli_commands/nfpkg.py                        209     93    56%
osmclient/cli_commands/ns.py                           185    143    23%
osmclient/cli_commands/nslcm.py                        194    138    29%
osmclient/cli_commands/nslcm_ops.py                     77     52    32%
osmclient/cli_commands/nspkg.py                        137     64    53%
osmclient/cli_commands/oka.py                           43     20    53%
osmclient/cli_commands/other.py                         11      3    73%
osmclient/cli_commands/packages.py                      89     39    56%
osmclient/cli_commands/pdus.py                         117     74    37%
osmclient/cli_commands/rbac.py                         221    131    41%
osmclient/cli_commands/repo.py                         227    122    46%
osmclient/cli_commands/resource_profile.py              45     22    51%
osmclient/cli_commands/sdnc.py                         104     53    49%
osmclient/cli_commands/subscriptions.py                 59     29    51%
osmclient/cli_commands/utils.py                         53     39    26%
osmclient/cli_commands/vca.py                          156     16    90%
osmclient/cli_commands/vim.py                          183     67    63%
osmclient/cli_commands/vnf.py                          114     80    30%
osmclient/cli_commands/wim.py                          101     56    45%
osmclient/client.py                                     27     21    22%
osmclient/common/__init__.py                             0      0   100%
osmclient/common/exceptions.py                           6      0   100%
osmclient/common/http.py                                71     58    18%
osmclient/common/package_handling.py                    28     20    29%
osmclient/common/package_tool.py                       442    397    10%
osmclient/common/print_output.py                        47     36    23%
osmclient/common/sol004_package.py                      36     17    53%
osmclient/common/sol007_package.py                      32     15    53%
osmclient/common/sol_package.py                        158    120    24%
osmclient/common/test/test_utils.py                     36      0   100%
osmclient/common/utils.py                               80     54    32%
osmclient/common/wait.py                                86     66    23%
osmclient/scripts/__init__.py                            0      0   100%
osmclient/scripts/osm.py                               208    187    10%
osmclient/sol005/__init__.py                             0      0   100%
osmclient/sol005/app_profile.py                         20     14    30%
osmclient/sol005/client.py                             119     82    31%
osmclient/sol005/http.py                               160    137    14%
osmclient/sol005/infra_config_profile.py                20     14    30%
osmclient/sol005/infra_controller_profile.py            19     13    32%
osmclient/sol005/k8scluster.py                         118    101    14%
osmclient/sol005/ksu.py                                 28     22    21%
osmclient/sol005/ksu_package.py                         22     15    32%
osmclient/sol005/ns.py                                 382    353     8%
osmclient/sol005/nsd.py                                124    103    17%
osmclient/sol005/nsi.py                                208    189     9%
osmclient/sol005/nst.py                                127    107    16%
osmclient/sol005/oka.py                                 22     15    32%
osmclient/sol005/osm_api_object.py                     104     87    16%
osmclient/sol005/osmrepo.py                            309    260    16%
osmclient/sol005/package.py                             63     50    21%
osmclient/sol005/pdud.py                                93     78    16%
osmclient/sol005/project.py                             74     61    18%
osmclient/sol005/repo.py                                74     60    19%
osmclient/sol005/resource_profile.py                    20     14    30%
osmclient/sol005/role.py                               117    103    12%
osmclient/sol005/sdncontroller.py                       94     77    18%
osmclient/sol005/subscription.py                        69     56    19%
osmclient/sol005/tests/test_osmrepo.py                  13      0   100%
osmclient/sol005/tests/test_vca.py                     117      0   100%
osmclient/sol005/user.py                               143    131     8%
osmclient/sol005/vca.py                                 73      0   100%
osmclient/sol005/vim.py                                157    138    12%
osmclient/sol005/vnf.py                                 56     46    18%
osmclient/sol005/vnfd.py                               207    181    13%
osmclient/sol005/wim.py                                139    120    14%
------------------------------------------------------------------------
TOTAL                                                 7628   5247    31%
cover run-test: commands[4] | coverage html -d ./cover '--omit=*tests*'
Wrote HTML report to ./cover/index.html
cover run-test: commands[5] | coverage xml -o coverage.xml '--omit=*tests*'
Wrote XML report to coverage.xml

✔ OK pylint in 56.974 seconds
pylint create: /tmp/.tox/pylint
pylint installdeps: -r/home/jenkins/workspace/osmclient-stage_2_master/requirements.txt, -r/home/jenkins/workspace/osmclient-stage_2_master/requirements-dev.txt, -r/home/jenkins/workspace/osmclient-stage_2_master/requirements-test.txt, pylint==3.2.2
pylint develop-inst: /home/jenkins/workspace/osmclient-stage_2_master
pylint installed: astroid==3.2.2,certifi==2023.7.22,charset-normalizer==3.2.0,click==8.1.7,coverage==7.3.1,dill==0.3.8,enum34==1.1.10,idna==3.4,isort==5.13.2,Jinja2==3.1.2,jsonpath-ng==1.6.0,lxml==5.2.2,MarkupSafe==2.1.3,mccabe==0.7.0,mock==5.1.0,nose2==0.13.0,osm-im @ git+https://osm.etsi.org/gerrit/osm/IM.git@90ffed24477703d8b77f8805c567cdaba0798ea6,-e git+https://osm.etsi.org/gerrit/osm/osmclient.git@6ba3bdeae8d122439e64bdb668b2e8453edf6551#egg=osmclient,packaging==23.1,platformdirs==4.2.2,ply==3.11,prettytable==3.9.0,pyang==2.5.3,pyangbind==0.8.3.post1,pylint==3.2.2,python-magic==0.4.27,PyYAML==6.0.1,regex==2024.5.15,requests==2.31.0,six==1.16.0,tomli==2.0.1,tomlkit==0.12.5,typing_extensions==4.12.2,urllib3==2.0.5,verboselogs==1.7,wcwidth==0.2.6
pylint run-test-pre: PYTHONHASHSEED='1193677513'
pylint run-test: commands[0] | pylint -E osmclient/

___________________________________ summary ____________________________________
ERROR:   black: parallel child exit code 1
  cover: commands succeeded
ERROR:   flake8: parallel child exit code 1
  pylint: commands succeeded
  safety: commands succeeded