SuccessConsole Output

Started by GitLab push by Miguel Angel Reina Ortega
[EnvInject] - Loading node environment variables.
Building remotely on build2.forge.etsi.org (HiveTap) in workspace /home/jenkins/workspace/NFV - Network Functions Virtualisation/api-tests
using credential 23ce2346-acc3-49d2-9308-34fdca1b8f6f
 > 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 Jenkins user for build2 (only for api-tests job)
 > git fetch --tags --progress git@forge.etsi.org:nfv/api-tests.git +refs/heads/*:refs/remotes/origin/*
 > git rev-parse remotes/origin/2.6.1-fix-plu^{commit} # timeout=10
 > git branch -a -v --no-abbrev --contains 136c43955c0950a0ecab2af2a8df721f316d5fbf # timeout=10
Checking out Revision 136c43955c0950a0ecab2af2a8df721f316d5fbf (origin/2.6.1-fix-plu)
 > git config core.sparsecheckout # timeout=10
 > git checkout -f 136c43955c0950a0ecab2af2a8df721f316d5fbf
Commit message: "Triggering CI/CD of Robot Hive Tap Test Tools project for 'plu' branches"
 > git rev-list --no-walk f22aace534c0a3e33f12b7a5b7916c497ce8b4c7 # 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/jenkins527048024705619276.sh
Using git branch origin/2.6.1-fix-plu

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 ']'
++ awk '{ print $1 }'
++ grep -e stf583-rf-validation
++ docker ps -a
+ DOCKER_ID=e37b05f527e6
+ docker build --tag stf583-rf-validation -f ./scripts/docker/Dockerfile .
Sending build context to Docker daemon  69.09MB

Step 1/18 : FROM ubuntu:16.04
 ---> 9499db781771
Step 2/18 : MAINTAINER ETSI STF 583
 ---> Using cache
 ---> a47a0dd1534e
Step 3/18 : LABEL description="SFT583 Robot Framework Docker Image"
 ---> Using cache
 ---> 1be2b3941011
Step 4/18 : ENV TERM=xterm
 ---> Using cache
 ---> 7bcfcacc6e71
Step 5/18 : ENV HOSTNAME docker-robot-STF583
 ---> Using cache
 ---> 3b8074dd2ac7
Step 6/18 : ARG ssh_prv_key
 ---> Using cache
 ---> 16ce3bed90dc
Step 7/18 : 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
 ---> 1c548d4580c0
Step 8/18 : RUN echo "docker-robot-STF583" > /etc/hostname     && echo "root:etsi" | chpasswd
 ---> Using cache
 ---> 84dd7b207b13
Step 9/18 : 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
 ---> be8ba2c65b1e
Step 10/18 : RUN DEBIAN_FRONTEND=noninteractive         && mkdir -p /home/etsi/dev/robot         && cd /home/etsi/dev/robot
 ---> Using cache
 ---> 37543df5d11a
Step 11/18 : ADD requirements.txt /home/etsi/dev/robot/
 ---> 6497e4be4d2a
Step 12/18 : ADD extensions /home/etsi/dev/robot/extensions
 ---> d65d3ac5f510
Step 13/18 : RUN ls /home/etsi/dev/robot
 ---> Running in 1bb8834eedf1
extensions
requirements.txt
Removing intermediate container 1bb8834eedf1
 ---> 222ffeb024c8
Step 14/18 : 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 .
 ---> Running in 44830c49980b
Cloning into 'robot2doc'...
Collecting python-docx==0.8.7 (from -r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/00/ed/dc8d859eb32980ccf0e5a9b1ab3311415baf55de208777d85826a7fb0b65/python-docx-0.8.7.tar.gz (5.4MB)
Collecting robotframework==3.1 (from -r requirements.txt (line 2))
  Downloading https://files.pythonhosted.org/packages/78/c3/9a5af726bef21c2b0946a81a3348e946764a72ae5a2c45beaeee43e7d8a8/robotframework-3.1-py2.py3-none-any.whl (597kB)
Collecting pytest (from -r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/40/76/86f886e750b81a4357b6ed606b2bcf0ce6d6c27ad3c09ebf63ed674fc86e/pytest-6.2.5-py3-none-any.whl (280kB)
Collecting lxml>=2.3.2 (from python-docx==0.8.7->-r requirements.txt (line 1))
  Downloading https://files.pythonhosted.org/packages/0a/12/ec66192d5eca20a92302af5a6ce6147d96dc4b65050e9b0509180adf6252/lxml-4.6.3-cp35-cp35m-manylinux1_x86_64.whl (5.5MB)
Collecting toml (from pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/44/6f/7120676b6d73228c96e17f1f794d8ab046fc910d781c8d151120c3f1569e/toml-0.10.2-py2.py3-none-any.whl
Collecting attrs>=19.2.0 (from pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/20/a9/ba6f1cd1a1517ff022b35acd6a7e4246371dfab08b8e42b829b6d07913cc/attrs-21.2.0-py2.py3-none-any.whl (53kB)
Collecting pluggy<2.0,>=0.12 (from pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/9e/01/f38e2ff29715251cf25532b9082a1589ab7e4f571ced434f98d0139336dc/pluggy-1.0.0-py2.py3-none-any.whl
Collecting py>=1.8.2 (from pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/67/32/6fe01cfc3d1a27c92fdbcdfc3f67856da8cbadf0dd9f2e18055202b2dc62/py-1.10.0-py2.py3-none-any.whl (97kB)
Collecting importlib-metadata>=0.12; python_version < "3.8" (from pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/71/c2/cb1855f0b2a0ae9ccc9b69f150a7aebd4a8d815bd951e74621c4154c52a8/importlib_metadata-4.8.1-py3-none-any.whl
Collecting packaging (from pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/3c/77/e2362b676dc5008d81be423070dd9577fa03be5da2ba1105811900fda546/packaging-21.0-py3-none-any.whl (40kB)
Collecting iniconfig (from pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/9b/dd/b3c12c6d707058fa947864b67f0c4e0c39ef8610988d7baea9578f3c48f3/iniconfig-1.1.1-py2.py3-none-any.whl
Collecting typing-extensions>=3.6.4; python_version < "3.8" (from importlib-metadata>=0.12; python_version < "3.8"->pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/74/60/18783336cc7fcdd95dae91d73477830aa53f5d3181ae4fe20491d7fc3199/typing_extensions-3.10.0.2-py3-none-any.whl
Collecting zipp>=0.5 (from importlib-metadata>=0.12; python_version < "3.8"->pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/92/d9/89f433969fb8dc5b9cbdd4b4deb587720ec1aeb59a020cf15002b9593eef/zipp-3.5.0-py3-none-any.whl
Collecting pyparsing>=2.0.2 (from packaging->pytest->-r requirements.txt (line 3))
  Downloading https://files.pythonhosted.org/packages/8a/bb/488841f56197b13700afd5658fc279a2025a39e22449b7cf29864669b15d/pyparsing-2.4.7-py2.py3-none-any.whl (67kB)
Building wheels for collected packages: python-docx
  Running setup.py bdist_wheel for python-docx: started
  Running setup.py bdist_wheel for python-docx: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/c2/c7/a7/4cb54d79bf82f9bb4be1780647700f7ec311f0f98a7a017c17
Successfully built python-docx
Installing collected packages: lxml, python-docx, robotframework, toml, attrs, typing-extensions, zipp, importlib-metadata, pluggy, py, pyparsing, packaging, iniconfig, pytest
Successfully installed attrs-21.2.0 importlib-metadata-4.8.1 iniconfig-1.1.1 lxml-4.6.3 packaging-21.0 pluggy-1.0.0 py-1.10.0 pyparsing-2.4.7 pytest-6.2.5 python-docx-0.8.7 robotframework-3.1 toml-0.10.2 typing-extensions-3.10.0.2 zipp-3.5.0
You are using pip version 8.1.1, however version 21.2.4 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Obtaining file:///home/etsi/dev/robot2doc
Installing collected packages: robot2doc
  Running setup.py develop for robot2doc
Successfully installed robot2doc-0.0.3
You are using pip version 8.1.1, however version 21.2.4 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Removing intermediate container 44830c49980b
 ---> f02b71e81aa6
Step 15/18 : RUN DEBIAN_FRONTEND=noninteractive 	&& cd /home/etsi/dev/robot 	&& pip3 install -r requirements.txt
 ---> Running in 6a7a5d5d68a2
Requirement already satisfied (use --upgrade to upgrade): robotframework==3.1 in /usr/local/lib/python3.5/dist-packages (from -r requirements.txt (line 6))
Collecting RESTinstance==1.0.0rc4 (from -r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/1a/27/e6781c2a19471d6b9e54cd943c695668ca84c1b393f48f3b441ca7db520f/RESTinstance-1.0.0rc4-py2.py3-none-any.whl
Collecting robotframework-dependencylibrary==1.0.0.post1 (from -r requirements.txt (line 8))
  Downloading https://files.pythonhosted.org/packages/7c/46/c09b5ebb178a85bdeba8d0e66d4b6747657bacbc96cec01c2aedf43d0b82/robotframework_dependencylibrary-1.0.0.post1-py3-none-any.whl
Collecting robotframework-jsonlibrary==0.3 (from -r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/91/05/bc535d666491d0856516cb6efed2736a5242bd70555c4f80df89755cc69b/robotframework-jsonlibrary-0.3.tar.gz
Collecting robotframework-jsonschemalibrary==1.0 (from -r requirements.txt (line 10))
  Downloading https://files.pythonhosted.org/packages/e6/0d/5d4162af1b87260f633cbd402cbe4bd263efa057bb9799c97e8e5676b241/robotframework-jsonschemalibrary-1.0.tar.gz
Collecting robotframework-mockserver==0.0.7 (from -r requirements.txt (line 11))
  Downloading https://files.pythonhosted.org/packages/54/57/b6d5da925976b7d92c66e332160acd25888202cdfbfe987d849252333038/robotframework-mockserver-0.0.7.tar.gz
Collecting robotframework-requests==0.8.0 (from -r requirements.txt (line 12))
  Downloading https://files.pythonhosted.org/packages/6b/73/963b08277606196fdc8711c597c895133435e0823b23bb60fefff65a8c2a/robotframework_requests-0.8.0-py3-none-any.whl
Collecting requests==2.20.0 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/f1/ca/10332a30cb25b627192b4ea272c351bce3ca1091e541245cccbace6051d8/requests-2.20.0-py2.py3-none-any.whl (60kB)
Collecting pygments==2.2.0 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/02/ee/b6e02dc6529e82b75bb06823ff7d005b141037cb1416b10c6f00fc419dca/Pygments-2.2.0-py2.py3-none-any.whl (841kB)
Collecting GenSON==1.0.1 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/00/ed/4b249d723b330e5856ab1c2f09dfa298f997630fa2bc5cfb50247cf1d8d2/genson-1.0.1.tar.gz
Collecting jsonschema==3.0.0a3 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/e3/df/b85ecaf1e9d4a8e9aa958517edeb3d933b9ce23d5c19ad3873ce1ac7d57b/jsonschema-3.0.0a3-py2.py3-none-any.whl (49kB)
Collecting jsonpath-ng==1.4.3 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/95/32/ab29fef829c129e5847b8241541bec858515af2bd57a845fad78efde25f5/jsonpath_ng-1.4.3-py2.py3-none-any.whl
Collecting strict-rfc3339==0.7 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/56/e4/879ef1dbd6ddea1c77c0078cd59b503368b0456bcca7d063a870ca2119d3/strict-rfc3339-0.7.tar.gz
Collecting flex==6.13.2 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/8d/3d/7075e8a5844e485d80972f4f6e9aef287f5b898312524f58d96a203b794d/flex-6.13.2-py3-none-any.whl (77kB)
Collecting tzlocal==1.5.1 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/cb/89/e3687d3ed99bc882793f82634e9824e62499fdfdc4b1ae39e211c5b05017/tzlocal-1.5.1.tar.gz
Collecting rfc3987==1.3.8 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/65/d4/f7407c3d15d5ac779c3dd34fbbc6ea2090f77bd7dd12f207ccf881551208/rfc3987-1.3.8-py2.py3-none-any.whl
Collecting pytz==2018.5 (from RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/30/4e/27c34b62430286c6d59177a0842ed90dc789ce5d1ed740887653b898779a/pytz-2018.5-py2.py3-none-any.whl (510kB)
Collecting tox (from robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/26/90/ca4779bd06f0a35dc4b1510109291b1cd0c440afc1dcc5271ff82b090c70/tox-3.24.3-py2.py3-none-any.whl (85kB)
Collecting coverage (from robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/18/97/fda94f1e78b508dd1a493106c236076c4c82a9925c9347211afc4d6bd4e0/coverage-5.5-cp35-cp35m-manylinux1_x86_64.whl (240kB)
Collecting jsonpath-rw==1.4.0 (from robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/71/7c/45001b1f19af8c4478489fbae4fc657b21c4c669d7a5a036a86882581d85/jsonpath-rw-1.4.0.tar.gz
Collecting jsonpath-rw-ext>=0.1.9 (from robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/eb/69/e46a4866c6afa52861bcd9bf8909a4b76fd7ac68b227b2d5673f109f0aa3/jsonpath_rw_ext-1.2.2-py2.py3-none-any.whl
Collecting idna<2.8,>=2.5 (from requests==2.20.0->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/4b/2a/0276479a4b3caeb8a8c1af2f8e4355746a97fab05a372e4a2c6a6b876165/idna-2.7-py2.py3-none-any.whl (58kB)
Collecting certifi>=2017.4.17 (from requests==2.20.0->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/05/1b/0a0dece0e8aa492a6ec9e4ad2fe366b511558cdc73fd3abc82ba7348e875/certifi-2021.5.30-py2.py3-none-any.whl (145kB)
Collecting urllib3<1.25,>=1.21.1 (from requests==2.20.0->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/01/11/525b02e4acc0c747de8b6ccdab376331597c569c42ea66ab0a1dbd36eca2/urllib3-1.24.3-py2.py3-none-any.whl (118kB)
Collecting chardet<3.1.0,>=3.0.2 (from requests==2.20.0->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/bc/a9/01ffebfb562e4274b6487b4bb1ddec7ca55ec7510b22e4c51f14098443b8/chardet-3.0.4-py2.py3-none-any.whl (133kB)
Requirement already satisfied (use --upgrade to upgrade): attrs>=17.4.0 in /usr/local/lib/python3.5/dist-packages (from jsonschema==3.0.0a3->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
Collecting pyrsistent>=0.14.0 (from jsonschema==3.0.0a3->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/f4/d7/0fa558c4fb00f15aabc6d42d365fcca7a15fcc1091cd0f5784a14f390b7f/pyrsistent-0.18.0.tar.gz (104kB)
  Requested pyrsistent>=0.14.0 from https://files.pythonhosted.org/packages/f4/d7/0fa558c4fb00f15aabc6d42d365fcca7a15fcc1091cd0f5784a14f390b7f/pyrsistent-0.18.0.tar.gz#sha256=773c781216f8c2900b42a7b638d5b517bb134ae1acbebe4d1e8f1f41ea60eb4b (from jsonschema==3.0.0a3->RESTinstance==1.0.0rc4->-r requirements.txt (line 7)), but installing version None
Collecting six>=1.11.0 (from jsonschema==3.0.0a3->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/d9/5a/e7c31adbe875f2abbb91bd84cf2dc52d792b5a01506781dbcf25c91daf11/six-1.16.0-py2.py3-none-any.whl
Collecting decorator (from jsonpath-ng==1.4.3->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/6a/36/b1b9bfdf28690ae01d9ca0aa5b0d07cb4448ac65fb91dc7e2d094e3d992f/decorator-5.0.9-py3-none-any.whl
Collecting ply (from jsonpath-ng==1.4.3->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/a3/58/35da89ee790598a0700ea49b2a66594140f44dec458c07e8e3d4979137fc/ply-3.11-py2.py3-none-any.whl (49kB)
Collecting PyYAML<4,>=3.11 (from flex==6.13.2->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/9e/a3/1d13970c3f36777c583f136c136f804d70f500168edc1edea6daa7200769/PyYAML-3.13.tar.gz (270kB)
Collecting click<7,>=3.3 (from flex==6.13.2->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/34/c1/8806f99713ddb993c5366c362b2f908f18269f8d792aff1abfd700775a77/click-6.7-py2.py3-none-any.whl (71kB)
Collecting jsonpointer<2,>=1.7 (from flex==6.13.2->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/7b/f4/90449441c1c011a733ee85739a680f2442eda2130e6a88f51804660a0289/jsonpointer-1.14-py2.py3-none-any.whl
Collecting validate-email<2,>=1.2 (from flex==6.13.2->RESTinstance==1.0.0rc4->-r requirements.txt (line 7))
  Downloading https://files.pythonhosted.org/packages/84/a0/cb53fb64b52123513d04f9b913b905f3eb6fda7264e639b4573cc715c29f/validate_email-1.3.tar.gz
Requirement already satisfied (use --upgrade to upgrade): packaging>=14 in /usr/local/lib/python3.5/dist-packages (from tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
Collecting virtualenv!=20.0.0,!=20.0.1,!=20.0.2,!=20.0.3,!=20.0.4,!=20.0.5,!=20.0.6,!=20.0.7,>=16.0.0 (from tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/ab/9f/a0d49dcde93f27125f011f8ce60f86840bc69c95695ed8ed2d77adb2cb8c/virtualenv-20.7.2-py2.py3-none-any.whl (5.3MB)
Requirement already satisfied (use --upgrade to upgrade): pluggy>=0.12.0 in /usr/local/lib/python3.5/dist-packages (from tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): importlib-metadata>=0.12; python_version < "3.8" in /usr/local/lib/python3.5/dist-packages (from tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
Collecting filelock>=3.0.0 (from tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/93/83/71a2ee6158bb9f39a90c0dea1637f81d5eef866e188e1971a1b1ab01a35a/filelock-3.0.12-py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): toml>=0.9.4 in /usr/local/lib/python3.5/dist-packages (from tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): py>=1.4.17 in /usr/local/lib/python3.5/dist-packages (from tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
Collecting pbr>=1.8 (from jsonpath-rw-ext>=0.1.9->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/18/e0/1d4702dd81121d04a477c272d47ee5b6bc970d1a0990b11befa275c55cf2/pbr-5.6.0-py2.py3-none-any.whl (111kB)
Requirement already satisfied (use --upgrade to upgrade): pyparsing>=2.0.2 in /usr/local/lib/python3.5/dist-packages (from packaging>=14->tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
Collecting distlib<1,>=0.3.1 (from virtualenv!=20.0.0,!=20.0.1,!=20.0.2,!=20.0.3,!=20.0.4,!=20.0.5,!=20.0.6,!=20.0.7,>=16.0.0->tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/87/26/f6a23dd3e578132cf924e0dd5d4e055af0cd4ab43e2a9f10b7568bfb39d9/distlib-0.3.2-py2.py3-none-any.whl (338kB)
Collecting platformdirs<3,>=2 (from virtualenv!=20.0.0,!=20.0.1,!=20.0.2,!=20.0.3,!=20.0.4,!=20.0.5,!=20.0.6,!=20.0.7,>=16.0.0->tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/15/4d/23989bdcb80a095a4b92a54a1f568e95bfc9793c70707be623dc75c11257/platformdirs-2.3.0-py3-none-any.whl
Collecting importlib-resources>=1.0; python_version < "3.7" (from virtualenv!=20.0.0,!=20.0.1,!=20.0.2,!=20.0.3,!=20.0.4,!=20.0.5,!=20.0.6,!=20.0.7,>=16.0.0->tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/f2/6c/2f3b930513bb971172ffceb63cf4e910944e57451724e69b1dec97cfefa6/importlib_resources-5.2.2-py3-none-any.whl
Collecting backports.entry-points-selectable>=1.0.4 (from virtualenv!=20.0.0,!=20.0.1,!=20.0.2,!=20.0.3,!=20.0.4,!=20.0.5,!=20.0.6,!=20.0.7,>=16.0.0->tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
  Downloading https://files.pythonhosted.org/packages/0c/cd/1e156227cad9f599524eb10af62a2362f872910a49402dbd2bea2dedc91c/backports.entry_points_selectable-1.1.0-py2.py3-none-any.whl
Requirement already satisfied (use --upgrade to upgrade): zipp>=0.5 in /usr/local/lib/python3.5/dist-packages (from importlib-metadata>=0.12; python_version < "3.8"->tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
Requirement already satisfied (use --upgrade to upgrade): typing-extensions>=3.6.4; python_version < "3.8" in /usr/local/lib/python3.5/dist-packages (from importlib-metadata>=0.12; python_version < "3.8"->tox->robotframework-jsonlibrary==0.3->-r requirements.txt (line 9))
Building wheels for collected packages: robotframework-jsonlibrary, robotframework-jsonschemalibrary, robotframework-mockserver, GenSON, strict-rfc3339, tzlocal, jsonpath-rw, pyrsistent, PyYAML, validate-email
  Running setup.py bdist_wheel for robotframework-jsonlibrary: started
  Running setup.py bdist_wheel for robotframework-jsonlibrary: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/5f/70/4e/099c5b627ea3eb9aed2794f477b45b15ac1a1e7a210a88090f
  Running setup.py bdist_wheel for robotframework-jsonschemalibrary: started
  Running setup.py bdist_wheel for robotframework-jsonschemalibrary: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/0c/9c/f0/680efb7acfc611d50bf85f1cc0e1773dfb5dfd0975a0f515f6
  Running setup.py bdist_wheel for robotframework-mockserver: started
  Running setup.py bdist_wheel for robotframework-mockserver: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/97/21/c1/da2daae69e072a62fc0a39ce43425252e891c93a0c27c78abe
  Running setup.py bdist_wheel for GenSON: started
  Running setup.py bdist_wheel for GenSON: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/c7/8d/68/e7d5111969fea6f6a53ec10803d1bca5118b79b5bb2d559122
  Running setup.py bdist_wheel for strict-rfc3339: started
  Running setup.py bdist_wheel for strict-rfc3339: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/bb/af/c9/b6e9fb5f9b2470e4ed2a7241c9ab3a8cdd3bc8555ae02ca2e6
  Running setup.py bdist_wheel for tzlocal: started
  Running setup.py bdist_wheel for tzlocal: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/15/ae/df/a67bf1ed84e9bf230187d36d8dcfd30072bea0236cb059ed91
  Running setup.py bdist_wheel for jsonpath-rw: started
  Running setup.py bdist_wheel for jsonpath-rw: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/5c/00/9a/82822db383c2d96dcebf839786665a185f92d37e5026f9806f
  Running setup.py bdist_wheel for pyrsistent: started
  Running setup.py bdist_wheel for pyrsistent: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/ac/d9/e0/191232e81cfed175486a03c7c7b0ec02e269b4b479b99d1106
  Running setup.py bdist_wheel for PyYAML: started
  Running setup.py bdist_wheel for PyYAML: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/ad/da/0c/74eb680767247273e2cf2723482cb9c924fe70af57c334513f
  Running setup.py bdist_wheel for validate-email: started
  Running setup.py bdist_wheel for validate-email: finished with status 'done'
  Stored in directory: /root/.cache/pip/wheels/14/46/e7/4a2edb0d03a802cb59a75668734c04cceacdd6c0c585448773
Successfully built robotframework-jsonlibrary robotframework-jsonschemalibrary robotframework-mockserver GenSON strict-rfc3339 tzlocal jsonpath-rw pyrsistent PyYAML validate-email
Installing collected packages: idna, certifi, urllib3, chardet, requests, pygments, GenSON, pyrsistent, six, jsonschema, decorator, ply, jsonpath-ng, strict-rfc3339, rfc3987, PyYAML, click, jsonpointer, validate-email, flex, pytz, tzlocal, RESTinstance, robotframework-dependencylibrary, distlib, platformdirs, importlib-resources, backports.entry-points-selectable, filelock, virtualenv, tox, coverage, jsonpath-rw, pbr, jsonpath-rw-ext, robotframework-jsonlibrary, robotframework-jsonschemalibrary, robotframework-mockserver, robotframework-requests
Successfully installed GenSON-1.0.1 PyYAML-3.13 RESTinstance-1.0.0rc4 backports.entry-points-selectable-1.1.0 certifi-2021.5.30 chardet-3.0.4 click-6.7 coverage-5.5 decorator-5.0.9 distlib-0.3.2 filelock-3.0.12 flex-6.13.2 idna-2.7 importlib-resources-5.2.2 jsonpath-ng-1.4.3 jsonpath-rw-1.4.0 jsonpath-rw-ext-1.2.2 jsonpointer-1.14 jsonschema-3.0.0a3 pbr-5.6.0 platformdirs-2.3.0 ply-3.11 pygments-2.2.0 pyrsistent-0.0.0 pytz-2018.5 requests-2.20.0 rfc3987-1.3.8 robotframework-dependencylibrary-1.0.0.post1 robotframework-jsonlibrary-0.3 robotframework-jsonschemalibrary-1.0 robotframework-mockserver-0.0.7 robotframework-requests-0.8.0 six-1.16.0 strict-rfc3339-0.7 tox-3.24.3 tzlocal-1.5.1 urllib3-1.24.3 validate-email-1.3 virtualenv-20.7.2
You are using pip version 8.1.1, however version 21.2.4 is available.
You should consider upgrading via the 'pip install --upgrade pip' command.
Removing intermediate container 6a7a5d5d68a2
 ---> 854730b7f283
Step 16/18 : ADD . /home/etsi/dev/robot
 ---> 20065d777faa
Step 17/18 : RUN	chmod +x /home/etsi/dev/robot/scripts/*
 ---> Running in 66c262444e31
Removing intermediate container 66c262444e31
 ---> 7cdb9439cbef
Step 18/18 : CMD tail -f /dev/null
 ---> Running in afd3e6ddaaae
Removing intermediate container afd3e6ddaaae
 ---> 963c3b227819
Successfully built 963c3b227819
Successfully tagged stf583-rf-validation:latest
+ '[' 0 '!=' 0 ']'

# That's all Floks
exit 0
+ exit 0
++++ 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/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/Subscriptions.robot
++++ Dryrun file SOL002/VNFIndicator-API/VNFIndicators.robot
++++ Dryrun file SOL002/VNFIndicator-API/VnfIndicatorsInVnfInstanceId.robot
++++ Dryrun file SOL002/VNFIndicatorNotification-API/VnfIndicatorNotification.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ApiVersion.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/CancelOperationTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ChangeExternalVNFConnectivityTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/ChangeVNFFlavourTask.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/IndividualVnfLcmOperationOccurence.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/InstantiateVNFTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/NotificationEndpoint.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/OperateVNFTask.robot
++++ Dryrun file SOL002/VNFLifecycleManagement-API/RetryOperationTask.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/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/IndividualSubscription.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/IndividualThreshold.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/PMJobs.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/Subscriptions.robot
++++ Dryrun file SOL002/VNFPerformanceManagement-API/Thresholds.robot
++++ Dryrun file SOL002/VNFPerformanceManagementNotification-API/PerformanceManagementNotification.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/Subscriptions.robot
++++ Dryrun file SOL003/VNFFaultManagementNotification-API/NotificationEndpoint.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/Subscriptions.robot
++++ Dryrun file SOL003/VNFIndicator-API/VNFIndicators.robot
++++ Dryrun file SOL003/VNFIndicator-API/VnfIndicatorNotification.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/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/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/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/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/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/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/PackageManagementNotification.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/IndividualSubscription.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/IndividualThreshold.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/PMJobs.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/PerformanceManagementNotification.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/Subscriptions.robot
++++ Dryrun file SOL003/VNFPerformanceManagement-API/Thresholds.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/Subscriptions.robot
++++ Dryrun file SOL005/NSDManagement-API/ApiVersion.robot
++++ Dryrun file SOL005/NSDManagement-API/IndividualNSDescriptor.robot
++++ Dryrun file SOL005/NSDManagement-API/IndividualPnfDescriptor.robot
++++ Dryrun file SOL005/NSDManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL005/NSDManagement-API/NSDContent.robot
++++ Dryrun file SOL005/NSDManagement-API/NSDManagementNotification.robot
++++ Dryrun file SOL005/NSDManagement-API/NSDescriptors.robot
++++ Dryrun file SOL005/NSDManagement-API/PNFDContent.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/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/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/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/NSPerformanceManagement-API/ApiVersion.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/IndividualPmJob.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/IndividualReport.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/IndividualSubscription.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/IndividualThreshold.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/Notifications.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/PMJobs.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/Subscriptions.robot
++++ Dryrun file SOL005/NSPerformanceManagement-API/Thresholds.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/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
Traceback (most recent call last):
  File "create_sols.py", line 226, in <module>
    if BRANCH.startswith("3"):
AttributeError: 'NoneType' object has no attribute 'startswith'
Received arguments:  ['create_sols.py', '../../robot', 'local', '../../build']
Using git ref: 136c439 (commit) on branch None
Generating entire SOL tests
apiTestsVersion
  % Total    % Received % Xferd  Average Speed   Time    Time     Time  Current
                                 Dload  Upload   Total   Spent    Left  Speed

  0     0    0     0    0     0      0      0 --:--:-- --:--:-- --:--:--     0
100  1179  100   676  100   503   1161    864 --:--:-- --:--:-- --:--:--  2029
{"id":8434,"sha":"9415dd0c334ad7b7517999365f03c906477a5959","ref":"master","status":"pending","web_url":"https://forge.etsi.org/rep/plugtests/nfv/robot-hivetap-testing-tools/pipelines/8434","before_sha":"0000000000000000000000000000000000000000","tag":false,"yaml_errors":null,"user":{"id":20,"name":"Miguel Angel Reina Ortega","username":"reinaortega","state":"active","avatar_url":"https://forge.etsi.org/rep/uploads/-/system/user/avatar/20/avatar.png","web_url":"https://forge.etsi.org/rep/reinaortega"},"created_at":"2021-08-31T03:57:01.264Z","updated_at":"2021-08-31T03:57:01.460Z","started_at":null,"finished_at":null,"committed_at":null,"duration":null,"coverage":null}Final validation result: 0
Archiving artifacts
‘build/*.docx’ doesn’t match anything: ‘build’ exists but not ‘build/*.docx’
No artifacts found that match the file pattern "build/*.docx". Configuration error?
Finished: SUCCESS