FailedConsole Output

Started by GitLab push by M. Rehan Abbasi
[EnvInject] - Loading node environment variables.
Building remotely on build3.forge.etsi.org (selenium docker) in workspace /home/jenkins/workspace/NFV - Network Functions Virtualisation/api-tests
using credential f9a9fd70-ea8b-4872-a9d5-d1fb1cf8123e
 > git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
 > git config remote.origin.url git@forge.etsi.org:nfv/api-tests.git # timeout=10
Fetching upstream changes from git@forge.etsi.org:nfv/api-tests.git
 > git --version # timeout=10
using GIT_SSH to set credentials 
 > git fetch --tags --progress git@forge.etsi.org:nfv/api-tests.git +refs/heads/*:refs/remotes/origin/*
 > git rev-parse remotes/origin/3.5.1-dev-SOL009-NFVMANO-PM^{commit} # timeout=10
 > git branch -a -v --no-abbrev --contains c858f32671b60f5d4fce0ff09c36357b727d4e63 # timeout=10
JENKINS-19022: warning: possible memory leak due to Git plugin usage; see: https://wiki.jenkins-ci.org/display/JENKINS/Remove+Git+Plugin+BuildsByBranch+BuildData
Checking out Revision c858f32671b60f5d4fce0ff09c36357b727d4e63 (origin/3.5.1-dev-SOL009-NFVMANO-PM)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f c858f32671b60f5d4fce0ff09c36357b727d4e63
Commit message: "refactor apiVersion and reports resources keywords for PM API"
 > git rev-list --no-walk 44a102e3328c8375574b8325065ee644b5a8f7e0 # timeout=10
[EnvInject] - Executing scripts and injecting environment variables after the SCM step.
[EnvInject] - Injecting as environment variables the properties content 
DOCKER_HUB_USER=fedesismo
CI_REGISTRY_USER=project_86_bot
CI_REGISTRY=osm.etsi.org:5050

[EnvInject] - Variables injected successfully.
[EnvInject] - Mask passwords that will be passed as build parameters.
[api-tests] $ /bin/bash /tmp/jenkins16886205894661440592.sh
Using git branch origin/3.5.1-dev-SOL009-NFVMANO-PM

DOCKER_FILE=./scripts/docker/Dockerfile
+ DOCKER_FILE=./scripts/docker/Dockerfile
if [ -f ${DOCKER_FILE} ]
then
    #check and build stf583-rf-validation image
    DOCKER_ID=`docker ps -a | grep -e stf583-rf-validation | awk '{ print $1 }'`
#    if [ ! -z "${DOCKER_ID}" ]
#    then
#        docker rm --force stf583-rf-validation
#    fi
    docker build --tag stf583-rf-validation -f ${DOCKER_FILE} .
    if [ "$?" != "0" ]
    then
        echo "Docker build failed: $?"
        exit -1
    fi
#    docker image ls -a
#    docker inspect stf583-rf-validation:latest
#    if [ "$?" != "0" ]
#    then
#        echo "Docker inspect failed: $?"
#        exit -2
#    fi
#else
#    exit -3
fi
+ '[' -f ./scripts/docker/Dockerfile ']'
++ docker ps -a
++ grep -e stf583-rf-validation
++ awk '{ print $1 }'
+ DOCKER_ID=592e3f32d0b7
+ docker build --tag stf583-rf-validation -f ./scripts/docker/Dockerfile .
Sending build context to Docker daemon  80.13MB

Step 1/19 : FROM ubuntu:18.04
 ---> 7d0d8fa37224
Step 2/19 : MAINTAINER ETSI STF 583
 ---> Using cache
 ---> e91e15667c5b
Step 3/19 : LABEL description="SFT583 Robot Framework Docker Image"
 ---> Using cache
 ---> d97adff4c5cf
Step 4/19 : ENV TERM=xterm
 ---> Using cache
 ---> 948f26ccee79
Step 5/19 : ENV HOSTNAME docker-robot-STF583
 ---> Using cache
 ---> 94b348bb4ea7
Step 6/19 : ARG ssh_prv_key
 ---> Using cache
 ---> 0fd16129e82d
Step 7/19 : RUN DEBIAN_FRONTEND=noninteractive apt update 	&& apt install python3 git -y 	&& apt install python3-pip -y     && DEBIAN_FRONTEND=noninteractive apt-get autoremove --purge -y     && DEBIAN_FRONTEND=noninteractive apt-get autoclean     && rm -rf /var/lib/apt/lists/*
 ---> Using cache
 ---> 2420a679ad45
Step 8/19 : RUN echo "docker-robot-STF583" > /etc/hostname     && echo "root:etsi" | chpasswd
 ---> Using cache
 ---> e73ee5cd28b9
Step 9/19 : RUN useradd --create-home --shell /bin/bash --user-group etsi --groups sudo     && echo "etsi:etsi" | chpasswd     && adduser etsi sudo     && echo "etsi ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
 ---> Using cache
 ---> efa479932419
Step 10/19 : RUN DEBIAN_FRONTEND=noninteractive         && mkdir -p /home/etsi/dev/robot         && cd /home/etsi/dev/robot
 ---> Using cache
 ---> c8686b365c79
Step 11/19 : ADD requirements.txt /home/etsi/dev/robot/
 ---> Using cache
 ---> 3cf375d23206
Step 12/19 : ADD extensions /home/etsi/dev/robot/extensions
 ---> Using cache
 ---> 6f3f7145f181
Step 13/19 : RUN ls /home/etsi/dev/robot
 ---> Using cache
 ---> 935b5fa4eb7d
Step 14/19 : ADD "https://forge.etsi.org/rep/api/v4/projects/224/repository/branches/master" /tmp/devalidateCache

 ---> Using cache
 ---> 97454d0c792f
Step 15/19 : RUN DEBIAN_FRONTED=noninteractive 	cd /home/etsi/dev/ 	mkdir -p build 	&& git clone https://forge.etsi.org/rep/forge-tools/robot2doc.git 	&& cd robot2doc 	&& pip3 install -r requirements.txt 	&& python3 -m pip install -e .
 ---> Using cache
 ---> d2e7f545f71c
Step 16/19 : RUN DEBIAN_FRONTEND=noninteractive 	&& cd /home/etsi/dev/robot 	&& pip3 install -r requirements.txt
 ---> Using cache
 ---> e3f853928ee0
Step 17/19 : ADD . /home/etsi/dev/robot
 ---> 2d98b2ab3174
Step 18/19 : RUN	chmod +x /home/etsi/dev/robot/scripts/*
 ---> Running in 28e1fd92ee57
Removing intermediate container 28e1fd92ee57
 ---> c0b97808a79c
Step 19/19 : CMD tail -f /dev/null
 ---> Running in ea64e4df7ea9
Removing intermediate container ea64e4df7ea9
 ---> 91e489b1a31b
Successfully built 91e489b1a31b
Successfully tagged stf583-rf-validation:latest
+ '[' 0 '!=' 0 ']'

# That's all Floks
exit 0
+ exit 0
Using git branch origin/3.5.1-dev-SOL009-NFVMANO-PM
++++ Dryrun file SOL002/VNFConfiguration-API/ApiVersion.robot
++++ Dryrun file SOL002/VNFConfiguration-API/Configuration.robot
++++ Dryrun file SOL002/VNFFaultManagement-API/Alarms.robot
++++ Dryrun file SOL002/VNFFaultManagement-API/ApiVersion.robot
++++ Dryrun file SOL002/VNFFaultManagement-API/EscalatePerceivedSeverityTask.robot
++++ Dryrun file SOL002/VNFFaultManagement-API/IndividualAlarm.robot
++++ Dryrun file SOL002/VNFFaultManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL002/VNFFaultManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL002/VNFFaultManagement-API/Notifications.robot
++++ Dryrun file SOL002/VNFFaultManagement-API/Subscriptions.robot
++++ Dryrun file SOL002/VNFIndicator-API/ApiVersion.robot
++++ Dryrun file SOL002/VNFIndicator-API/IndividualSubscription.robot
++++ Dryrun file SOL002/VNFIndicator-API/IndividualVNFindicator.robot
++++ Dryrun file SOL002/VNFIndicator-API/NotificationEndpoint.robot
++++ Dryrun file SOL002/VNFIndicator-API/Subscriptions.robot
++++ Dryrun file SOL002/VNFIndicator-API/VNFIndicators.robot
++++ Dryrun file SOL002/VNFIndicator-API/VnfIndicatorsInVnfInstanceId.robot
++++ Dryrun file SOL002/VNFIndicatorNotification-API/Notifications.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ApiVersion.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/CancelOperationTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ChangeCurrentVNFPackageTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ChangeExternalVNFConnectivityTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ChangeVNFFlavourTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/CreateVNFSnapshotTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/FailOperationTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/HealVNFTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/IndividualVNFInstance.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/IndividualVNFSnapshot.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/IndividualVnfLcmOperationOccurence.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/InstantiateVNFTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/Notifications.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/OperateVNFTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/RetryOperationTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/RevertToVNFSnapshotTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/RollbackOperationTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ScaleVNFTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ScaleVNFToLevelTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/Subscriptions.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/TerminateVNFTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/VNFInstances.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/VNFSnapshots.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/VnfLcmOperationOccurences.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/ApiVersion.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/IndividualPmJob.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/IndividualReport.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/IndividualThreshold.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/PMJobs.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/Thresholds.robot
++++ Dryrun file SOL002/VNFPerformanceManagementNotification-API/Notifications.robot
++++ Dryrun file SOL003/VNFFaultManagement-API/Alarms.robot
++++ Dryrun file SOL003/VNFFaultManagement-API/ApiVersion.robot
++++ Dryrun file SOL003/VNFFaultManagement-API/IndividualAlarm.robot
++++ Dryrun file SOL003/VNFFaultManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL003/VNFFaultManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL003/VNFFaultManagement-API/Subscriptions.robot
++++ Dryrun file SOL003/VNFFaultManagementNotification-API/Notifications.robot
++++ Dryrun file SOL003/VNFIndicator-API/ApiVersion.robot
++++ Dryrun file SOL003/VNFIndicator-API/IndividualSubscription.robot
++++ Dryrun file SOL003/VNFIndicator-API/IndividualVNFindicator.robot
++++ Dryrun file SOL003/VNFIndicator-API/NotificationEndpoint.robot
++++ Dryrun file SOL003/VNFIndicator-API/Notifications.robot
++++ Dryrun file SOL003/VNFIndicator-API/Subscriptions.robot
++++ Dryrun file SOL003/VNFIndicator-API/VNFIndicators.robot
++++ Dryrun file SOL003/VNFIndicator-API/VnfIndicatorsInVnfInstanceId.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ApiVersion.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/CancelOperationTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/CancelOperationWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ChangeCurrentVNFPackageTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ChangeExternalVNFConnectivityTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ChangeExternalVNFConnectivityWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ChangeVNFFlavourTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ChangeVNFFlavourWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/CreateVNFSnapshotTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/CreateVNFWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/DeleteVNFWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/FailOperationTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/FailOperationWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/HealVNFTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/HealVNFWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/IndividualVNFInstance.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/IndividualVNFSnapshot.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/IndividualVnfLcmOperationOccurence.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/InstantiateVNFTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/InstantiateVNFTaskWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ModifyVNFInformationWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/Notifications.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/OperateVNFTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/OperateVNFWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/RetryOperationTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/RetryOperationWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/RevertToVNFSnapshotTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/RollBackOperationWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/RollbackOperationTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ScaleVNFTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ScaleVNFToLevelTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ScaleVNFToLevelWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/ScaleVNFWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/Subscriptions.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/TerminateVNFTask.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/TerminateVNFWorkflow.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/VNFInstances.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/VNFSnapshots.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/VNFStateSnapshot.robot
++++ Dryrun file SOL003/VNFLifecycleManagement-API/VnfLcmOperationOccurences.robot
++++ Dryrun file SOL003/VNFLifecycleOperationGranting-API/ApiVersion.robot
++++ Dryrun file SOL003/VNFLifecycleOperationGranting-API/Grants.robot
++++ Dryrun file SOL003/VNFLifecycleOperationGranting-API/IndividualGrant.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/ApiVersion.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/IndividualVNFPackage.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/IndividualVNFPackageArtifacts.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/ManifestInIndividualVNFPackage.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/Notifications.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/Subscriptions.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/VNFDInIndividualVNFPackage.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/VNFPackageArtifacts.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/VNFPackageContent.robot
++++ Dryrun file SOL003/VNFPackageManagement-API/VNFPackages.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/ApiVersion.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/IndividualPmJob.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/IndividualReport.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/IndividualThreshold.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/Notifications.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/PMJobs.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/Thresholds.robot
++++ Dryrun file SOL003/VNFSnapshotPackageManagement-API/ApiVersion.robot
++++ Dryrun file SOL003/VNFSnapshotPackageManagement-API/IndividualVNFSnapshotPackage.robot
++++ Dryrun file SOL003/VNFSnapshotPackageManagement-API/IndividualVNFSnapshotPackageArtifact.robot
++++ Dryrun file SOL003/VNFSnapshotPackageManagement-API/VNFSnapshotPackageContent.robot
++++ Dryrun file SOL003/VNFSnapshotPackageManagement-API/VNFSnapshotPackages.robot
++++ Dryrun file SOL003/VirtualisedResourcesQuotaAvailableNotification-API/ApiVersion.robot
++++ Dryrun file SOL003/VirtualisedResourcesQuotaAvailableNotification-API/IndividualSubscription.robot
++++ Dryrun file SOL003/VirtualisedResourcesQuotaAvailableNotification-API/NotificationEndpoint.robot
++++ Dryrun file SOL003/VirtualisedResourcesQuotaAvailableNotification-API/Notifications.robot
++++ Dryrun file SOL003/VirtualisedResourcesQuotaAvailableNotification-API/Subscriptions.robot
++++ Dryrun file SOL005/NFVICapacityInformation-API/ApiVersion.robot
++++ Dryrun file SOL005/NFVICapacityInformation-API/CapacityThresholds.robot
++++ Dryrun file SOL005/NFVICapacityInformation-API/IndividualCapacityThreshold.robot
++++ Dryrun file SOL005/NFVICapacityInformation-API/IndividualVIMsNFVICapacityInformation.robot
++++ Dryrun file SOL005/NFVICapacityInformation-API/NFVICapacityInformation.robot
++++ Dryrun file SOL005/NFVICapacityInformation-API/NotificationEndpoint.robot
++++ Dryrun file SOL005/NSDManagement-API/ApiVersion.robot
++++ Dryrun file SOL005/NSDManagement-API/IndividualNSDArchiveArtifact.robot
++++ Dryrun file SOL005/NSDManagement-API/IndividualNSDescriptor.robot
++++ Dryrun file SOL005/NSDManagement-API/IndividualPNFDArchiveArtifact.robot
++++ Dryrun file SOL005/NSDManagement-API/IndividualPnfDescriptor.robot
++++ Dryrun file SOL005/NSDManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL005/NSDManagement-API/NSD.robot
++++ Dryrun file SOL005/NSDManagement-API/NSDArchiveContent.robot
++++ Dryrun file SOL005/NSDManagement-API/NSDArchiveManifest.robot
++++ Dryrun file SOL005/NSDManagement-API/NSDescriptors.robot
++++ Dryrun file SOL005/NSDManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL005/NSDManagement-API/Notifications.robot
++++ Dryrun file SOL005/NSDManagement-API/PNFD.robot
++++ Dryrun file SOL005/NSDManagement-API/PNFDArchiveContent.robot
++++ Dryrun file SOL005/NSDManagement-API/PNFDArchiveManifest.robot
++++ Dryrun file SOL005/NSDManagement-API/PNFDescriptors.robot
++++ Dryrun file SOL005/NSDManagement-API/Subscriptions.robot
++++ Dryrun file SOL005/NSFaultManagement-API/Alarms.robot
++++ Dryrun file SOL005/NSFaultManagement-API/ApiVersion.robot
++++ Dryrun file SOL005/NSFaultManagement-API/IndividualAlarm.robot
++++ Dryrun file SOL005/NSFaultManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL005/NSFaultManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL005/NSFaultManagement-API/Notifications.robot
++++ Dryrun file SOL005/NSFaultManagement-API/Subscriptions.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/ApiVersion.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/CancelOperationTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/ContinueOperationTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/CreateNSInstanceWorkflow.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/DeleteNSInstanceWorkflow.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/FailOperationTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/HealNSTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/HealNSTaskWorkflow.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/IndividualNSInstance.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/IndividualNSLCMOccurences.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/IndividualVNFSnapshot.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/InstantiateNSTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/InstantiateNSTaskWorkflow.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/NSInstances.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/NSLCMOccurences.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/Notifications.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/RetryOperationTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/RollbackOperationTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/ScaleNSTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/ScaleNSTaskWorkflow.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/Subscriptions.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/TerminateNSTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/TerminateNSTaskWorkflow.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/UpdateNSTask.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/UpdateNSTaskWorkflow.robot
++++ Dryrun file SOL005/NSLifecycleManagement-API/VNFSnapshots.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/ApiVersion.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/IndividualPmJob.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/IndividualReport.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/IndividualThreshold.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/Notifications.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/PMJobs.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/Thresholds.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/AccessConfigurationForExternalArtifacts.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/ApiVersion.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/IndividualVNFPackage.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/IndividualVNFPackageArtifacts.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/ManifestInIndividualVNFPackage.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/Notifications.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/Subscriptions.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/VNFDInIndividualVNFPackage.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/VNFPackageArtifacts.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/VNFPackageContent.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/VNFPackageContentViaURI.robot
++++ Dryrun file SOL005/VNFPackageManagement-API/VNFPackages.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/AccessConfigurationForExternalArtifacts.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/ApiVersion.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/BuildVNFSnapshotPackageContentTask.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/CancelVNFSnapshotPackageOperationTask.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/ExtractVNFSnapshotPackageContentTask.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/IndividualVNFSnapshotPackage.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/IndividualVNFSnapshotPackageArtifact.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/UploadVNFSnapshotPackageFromUriTask.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/VNFSnapshotPackageContent.robot
++++ Dryrun file SOL005/VNFSnapshotPackageManagement-API/VNFSnapshotPackages.robot
++++ Dryrun file SOL009/NFVMANOFaultManagement-API/Alarms.robot
++++ Dryrun file SOL009/NFVMANOFaultManagement-API/ApiVersion.robot
++++ Dryrun file SOL009/NFVMANOFaultManagement-API/IndividualAlarm.robot
++++ Dryrun file SOL009/NFVMANOFaultManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL009/NFVMANOFaultManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL009/NFVMANOFaultManagement-API/Notifications.robot
++++ Dryrun file SOL009/NFVMANOFaultManagement-API/Subscriptions.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/ApiVersion.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/CompileLogTask.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/IndividualLoggingJob.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/IndividualReport.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/LoggingJobs.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/Notifications.robot
++++ Dryrun file SOL009/NFVMANOLogManagement-API/Subscriptions.robot
++++ Dryrun file SOL009/NFVMANOPerformanceManagement-API/ApiVersion.robot
++++ Dryrun file SOL009/NFVMANOPerformanceManagement-API/IndividualPmJob.robot
++++ Issues found in file SOL009/NFVMANOPerformanceManagement-API/IndividualPmJob.robot
==============================================================================
IndividualPmJob                                                               
==============================================================================
POST Individual NFV-MANO Performance Job - Method not implemented ... | FAIL |
Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is
------------------------------------------------------------------------------
GET individual NFV-MANO Performance Job :: Test ID: 8.3.2.2.2         | FAIL |
Several failures occurred:

1) Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is

2) Multiple keywords with name 'Check HTTP Response Body Json Schema Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Body Json Schema Is
    NFVMANOPMKeywords.Check HTTP Response Body Json Schema Is
------------------------------------------------------------------------------
GET individual NFV-MANO Performance Job with invalid resource iden... | FAIL |
Several failures occurred:

1) Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is

2) Multiple keywords with name 'Check HTTP Response Body Json Schema Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Body Json Schema Is
    NFVMANOPMKeywords.Check HTTP Response Body Json Schema Is
------------------------------------------------------------------------------
PUT Individual NFV-MANO Performance Job - Method not implemented :... | FAIL |
Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is
------------------------------------------------------------------------------
PATCH Individual NFV-MANO Performance Job :: Test ID: 8.3.2.2.5       | FAIL |
Several failures occurred:

1) Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is

2) Multiple keywords with name 'Check HTTP Response Body Json Schema Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Body Json Schema Is
    NFVMANOPMKeywords.Check HTTP Response Body Json Schema Is
------------------------------------------------------------------------------
DELETE Individual NFV-MANO Performance Job :: Test ID: 8.3.2.2.6      | FAIL |
Several failures occurred:

1) Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is

2) Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is
------------------------------------------------------------------------------
DELETE Individual NFV-MANO Performance Job with invalid resource i... | FAIL |
Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is
------------------------------------------------------------------------------
PATCH Individual NFV-MANO Performance Job - Precondition failed ::... | FAIL |
Several failures occurred:

1) Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is

2) Multiple keywords with name 'Check HTTP Response Body Json Schema Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Body Json Schema Is
    NFVMANOPMKeywords.Check HTTP Response Body Json Schema Is
------------------------------------------------------------------------------
PATCH Individual NFV-MANO Performance Job - Unprocessable entity :... | FAIL |
Several failures occurred:

1) Multiple keywords with name 'Check HTTP Response Status Code Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Status Code Is
    NFVMANOPMKeywords.Check HTTP Response Status Code Is

2) Multiple keywords with name 'Check HTTP Response Body Json Schema Is' found. Give the full name of the keyword you want to use:
    NFVMANOCimKeywords.Check HTTP Response Body Json Schema Is
    NFVMANOPMKeywords.Check HTTP Response Body Json Schema Is
------------------------------------------------------------------------------
IndividualPmJob                                                       | FAIL |
9 critical tests, 0 passed, 9 failed
9 tests total, 0 passed, 9 failed
==============================================================================
Output:  None
++++ Dryrun file SOL009/NFVMANOPerformanceManagement-API/IndividualReport.robot
++++ Dryrun file SOL009/NFVMANOPerformanceManagement-API/IndividualThreshold.robot
++++ Dryrun file SOL009/NFVMANOPerformanceManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL009/NFVMANOPerformanceManagement-API/Notifications.robot
++++ Dryrun file SOL009/NFVMANOPerformanceManagement-API/PMJobs.robot
++++ Dryrun file SOL009/NFVMANOPerformanceManagement-API/Thresholds.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/ApiVersion.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/ChangeInterfaceStateTask.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/ChangeNFVMANOEntityStateTask.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/ChangeStateOperationOccurrences.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/IndividualNFVMANOServiceInterface.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/IndividualPeerEntity.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/IndividualStateChangeOperationOccurrence.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/NFVMANOEntity.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/NFVMANOServiceInterfaces.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/Notifications.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/PeerEntities.robot
++++ Dryrun file SOL009/NFVManoConfigurationAndInformationManagement-API/Subscriptions.robot
++++ Dryrun file SOL011/NSInstanceUsageNotification-API/ApiVersion.robot
++++ Dryrun file SOL011/NSInstanceUsageNotification-API/IndividualSubscription.robot
++++ Dryrun file SOL011/NSInstanceUsageNotification-API/NotificationEndpoint.robot
++++ Dryrun file SOL011/NSInstanceUsageNotification-API/Notifications.robot
++++ Dryrun file SOL011/NSInstanceUsageNotification-API/Subscriptions.robot
++++ Dryrun file SOL011/NSLifecycleOperationGranting-API/ApiVersion.robot
++++ Dryrun file SOL011/NSLifecycleOperationGranting-API/Grants.robot
++++ Dryrun file SOL011/NSLifecycleOperationGranting-API/IndividualGrant.robot
++++ Dryrun file SOL012/PolicyManagement-API/ApiVersion.robot
++++ Dryrun file SOL012/PolicyManagement-API/IndividualPolicy.robot
++++ Dryrun file SOL012/PolicyManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL012/PolicyManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL012/PolicyManagement-API/Notifications.robot
++++ Dryrun file SOL012/PolicyManagement-API/ParticularVersionOfAnIndividualPolicy.robot
++++ Dryrun file SOL012/PolicyManagement-API/Policies.robot
++++ Dryrun file SOL012/PolicyManagement-API/SelectedVersionOfAnIndividualPolicy.robot
++++ Dryrun file SOL012/PolicyManagement-API/Subscriptions.robot
Using git branch origin/3.5.1-dev-SOL009-NFVMANO-PM
rm: cannot remove '*': No such file or directory
++++ Not generating docs for branch origin/3.5.1-dev-SOL009-NFVMANO-PM
run-container.sh failed
Build step 'Execute shell' marked build as failure
Archiving artifacts
Finished: FAILURE