Sending build context to Docker daemon 31.74kB Step 1/24 : FROM vauxoo/odoo-80-image-shippable-auto latest: Pulling from vauxoo/odoo-80-image-shippable-auto Digest: sha256:db2897f695d4668818a1e9cb7b72482711f27d06a829d9216f2d6074b4536b61 Status: Image is up to date for vauxoo/odoo-80-image-shippable-auto:latest ---> ede78ea2ca48 Step 2/24 : COPY files/entrypoint.sh /entrypoint.sh ---> 128078f4e3da Step 3/24 : RUN chown -R odoo:odoo /entrypoint.sh ---> Running in 3a6f4a1d33ac Removing intermediate container 3a6f4a1d33ac ---> 3c53bf5f9af6 Step 4/24 : COPY files/rvm_env.sh /rvm_env.sh ---> ff1d16a49b5e Step 5/24 : RUN chown -R odoo:odoo /rvm_env.sh ---> Running in 14c538918cf0 Removing intermediate container 14c538918cf0 ---> 48303395629c Step 6/24 : ARG GITHUB_TOKEN ---> Running in 03b1797a3b3b Removing intermediate container 03b1797a3b3b ---> 7f6727ed0eed Step 7/24 : ENV GITHUB_TOKEN=$GITHUB_TOKEN ---> Running in 648b015d2a62 Removing intermediate container 648b015d2a62 ---> 1ff64cdc1d42 Step 8/24 : ENV HOME=/home/odoo ---> Running in af45835985a6 Removing intermediate container af45835985a6 ---> c9643a22e2d9 Step 9/24 : COPY .ssh $HOME/.ssh ---> d6989335f9d9 Step 10/24 : COPY ./files/install /install ---> ff2912437c39 Step 11/24 : COPY ./files/script /script ---> 37fa1ffd21e9 Step 12/24 : RUN chown -R odoo:odoo $HOME/.ssh;chown -R odoo:odoo /install;chown -R odoo:odoo /script; ---> Running in b4ef4cfbfc70 Removing intermediate container b4ef4cfbfc70 ---> 0b14f521deab Step 13/24 : RUN apt-get update; apt-get install expect-dev openssl antiword ---> Running in 4cd4f3f09259 Get:1 http://deb.nodesource.com trusty InRelease [3,914 B] Get:2 http://deb.nodesource.com trusty/main amd64 Packages [964 B] Get:3 http://ppa.launchpad.net trusty InRelease [15.4 kB] Ign http://archive.ubuntu.com trusty InRelease Get:4 http://apt.postgresql.org trusty-pgdg InRelease [56.5 kB] Get:5 http://archive.ubuntu.com trusty-updates InRelease [65.9 kB] Get:6 http://ppa.launchpad.net trusty InRelease [15.5 kB] Get:7 http://ppa.launchpad.net trusty InRelease [20.8 kB] Get:8 http://apt.postgresql.org trusty-pgdg/main amd64 Packages [201 kB] Get:9 http://archive.ubuntu.com trusty-security InRelease [65.9 kB] Get:10 http://ppa.launchpad.net trusty InRelease [15.5 kB] Get:11 http://archive.ubuntu.com trusty Release.gpg [933 B] Get:12 http://archive.ubuntu.com trusty-updates/main amd64 Packages [1,460 kB] Get:13 http://ppa.launchpad.net trusty InRelease [16.0 kB] Get:14 http://ppa.launchpad.net trusty/main amd64 Packages [10.6 kB] Get:15 http://ppa.launchpad.net trusty/main amd64 Packages [2,941 B] Get:16 http://archive.ubuntu.com trusty-updates/universe amd64 Packages [671 kB] Get:17 http://ppa.launchpad.net trusty/main amd64 Packages [3,533 B] Get:18 http://archive.ubuntu.com trusty-updates/multiverse amd64 Packages [16.1 kB] Get:19 http://ppa.launchpad.net trusty/main amd64 Packages [23.2 kB] Get:20 http://archive.ubuntu.com trusty-security/main amd64 Packages [1,032 kB] Get:21 http://archive.ubuntu.com trusty-security/universe amd64 Packages [378 kB] Get:22 http://ppa.launchpad.net trusty/main amd64 Packages [5,791 B] Get:23 http://archive.ubuntu.com trusty-security/multiverse amd64 Packages [4,730 B] Get:24 http://archive.ubuntu.com trusty Release [58.5 kB] Get:25 http://archive.ubuntu.com trusty/main amd64 Packages [1,743 kB] Get:26 http://archive.ubuntu.com trusty/universe amd64 Packages [7,589 kB] Get:27 http://archive.ubuntu.com trusty/multiverse amd64 Packages [169 kB] Fetched 13.6 MB in 3s (3,615 kB/s) Reading package lists... Reading package lists... Building dependency tree... Reading state information... expect-dev is already the newest version. antiword is already the newest version. openssl is already the newest version. 0 upgraded, 0 newly installed, 0 to remove and 8 not upgraded. Removing intermediate container 4cd4f3f09259 ---> bd9536da61d0 Step 14/24 : RUN echo "TRAVIS_PYTHON_VERSION=3.6" >> /etc/environment ---> Running in 4cb313e404b3 Removing intermediate container 4cb313e404b3 ---> beed8eb31a41 Step 15/24 : USER odoo ---> Running in 8a1f941e1ab7 Removing intermediate container 8a1f941e1ab7 ---> 1fd46569db00 Step 16/24 : ENV TRAVIS_PYTHON_VERSION=3.6 ---> Running in 51fe77ad3c21 Removing intermediate container 51fe77ad3c21 ---> 294b8626bf96 Step 17/24 : ENV TRAVIS_REPO_SLUG=vauxoo/enterprise-pe ---> Running in 75304829ca50 Removing intermediate container 75304829ca50 ---> c9950c3db256 Step 18/24 : ENV TRAVIS_BUILD_DIR=${HOME}/build/${TRAVIS_REPO_SLUG} ---> Running in 64f4f275e585 Removing intermediate container 64f4f275e585 ---> e9b673901341 Step 19/24 : RUN git init ${TRAVIS_BUILD_DIR} && cd ${TRAVIS_BUILD_DIR} && git remote add origin git@git.vauxoo.com:vauxoo/enterprise-pe.git && git fetch --update-head-ok -p origin '+refs/heads/12.0:refs/heads/12.0' && git checkout -qf 12.0 && git config --global user.email "None" && git config --global user.name "None" || true ---> Running in 83910f15f08e Initialized empty Git repository in /home/odoo/build/vauxoo/enterprise-pe/.git/ From git.vauxoo.com:vauxoo/enterprise-pe * [new branch] 12.0 -> 12.0  * [new branch] 12.0 -> origin/12.0 Removing intermediate container 83910f15f08e ---> c75b0d80d10f Step 20/24 : RUN cat ${HOME}/.ssh/id_rsa.pub | tee -a ${HOME}/.ssh/authorized_keys ---> Running in 1f2386e5f3b9 ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC8J1VtxZGbkG8qgGzlszOQ3XMtk+a/Y0axsc6jovFjiGXfQheaxty4Uten+2xDlXL2/CFeCcf7MUUhc+AnH6fQVPEcSPClmSHvWN2imO2CJj9D9elpa/m1OFC9EPNgHuPv1FoE0AUphDb/pwhBg5r6kjcFXwpuO9BYJ53g198uPuJERc5FgPr0bTJeIyS5OAKTiuKpfpstJdFTqFjUBGvKMVvH4MkMab3vBqXdEqoDQ+4iE1KLDypw7poc6A6SSH9DmIILkRt25pnSklDOTYHVajcle6MiUR7qnle5/nRiXAvW6YbnozdJPUaGeerwoStKFT3MzhPBqmIY8LRy4RFx Removing intermediate container 1f2386e5f3b9 ---> 02b5ad0fb74b Step 21/24 : ENV LINT_CHECK="0" TESTS="0" PSQL_VERSION="10" TESTS="1" ---> Running in 9cf4ea56bfd8 Removing intermediate container 9cf4ea56bfd8 ---> 5c89590e3c8d Step 22/24 : WORKDIR ${TRAVIS_BUILD_DIR} ---> Running in 4680fed763b3 Removing intermediate container 4680fed763b3 ---> d8680ef81f89 Step 23/24 : RUN /bin/bash -c "source ${REPO_REQUIREMENTS}/virtualenv/python3.6/bin/activate && source ${REPO_REQUIREMENTS}/virtualenv/nodejs/bin/activate && source /rvm_env.sh && /install" ---> Running in 47ffeb948f89 Cloning into '/home/odoo/maintainer-quality-tools'... Collecting PyPDF2 Downloading PyPDF2-1.26.0.tar.gz (77 kB) Collecting ofxparse Downloading ofxparse-0.20.tar.gz (53 kB) Collecting beautifulsoup4 Downloading beautifulsoup4-4.9.3-py3-none-any.whl (115 kB) Requirement already satisfied, skipping upgrade: lxml in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from ofxparse) (4.5.2) Requirement already satisfied, skipping upgrade: six in /usr/local/lib/python3.6/dist-packages (from ofxparse) (1.15.0) Collecting soupsieve>1.2; python_version >= "3.0" Downloading soupsieve-2.1-py3-none-any.whl (32 kB) Building wheels for collected packages: PyPDF2, ofxparse Building wheel for PyPDF2 (setup.py): started Building wheel for PyPDF2 (setup.py): finished with status 'done' Created wheel for PyPDF2: filename=PyPDF2-1.26.0-py3-none-any.whl size=61085 sha256=4728325517061f026121f3c84f5f73b4b169f58d948544ba2f04e2cff5a5e321 Stored in directory: /home/odoo/.cache/pip/wheels/97/28/4b/142b7d8c98eeeb73534b9c5b6558ddd3bab3c2c8192aa7ab30 Building wheel for ofxparse (setup.py): started Building wheel for ofxparse (setup.py): finished with status 'done' Created wheel for ofxparse: filename=ofxparse-0.20-py3-none-any.whl size=35382 sha256=12b1aadd8594f2596f7e06e29430f201dc7a565f41169b2c5f913f28df80f8b9 Stored in directory: /home/odoo/.cache/pip/wheels/1e/3b/f2/5ca904c2e5d0fd2b0de9ae9a9797f497df072438102021b2fe Successfully built PyPDF2 ofxparse Installing collected packages: PyPDF2, soupsieve, beautifulsoup4, ofxparse Successfully installed PyPDF2-1.26.0 beautifulsoup4-4.9.3 ofxparse-0.20 soupsieve-2.1 WARNING: You are using pip version 20.2.3; however, version 21.0 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command.  : ${TRAVIS_BUILD_DIR:="${CI_PROJECT_DIR}"} # If unset, takes it from GitLab CI if [ "${LINT_CHECK}" != "0" ]; then if [ -f "${HOME}/.nvm/nvm.sh" ]; then # Update nodejs v6.latest required by eslint # Using nvm of travis CURRENT_NODE=$(which node)  source ${HOME}/.nvm/nvm.sh nvm install 6 ln -sf $(nvm which 6) $CURRENT_NODE fi  pip install -q QUnitSuite flake8 Click # Install pylint plugin depends without lxml  wget --no-check-certificate https://raw.githubusercontent.com/vauxoo/pylint-odoo/master/requirements.txt -O $(dirname ${BASH_SOURCE[0]})/pylint_odoo_requirements.txt  pip install --upgrade -r $(dirname ${BASH_SOURCE[0]})/pylint_odoo_requirements.txt  pip install pbr pip install --upgrade --no-deps git+https://github.com/vauxoo/pylint-odoo.git # To use last version ever  npm install -g eslint # Extra package for pylint-odoo plugin  # Get pylint configuration file of vauxoo  wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/pylint_vauxoo_light.cfg -O ${HOME}/maintainer-quality-tools/travis/cfg/travis_run_pylint.cfg  wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/pylint_vauxoo_light_pr.cfg -O ${HOME}/maintainer-quality-tools/travis/cfg/travis_run_pylint_pr.cfg  wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/pylint_vauxoo_light_beta.cfg -O ${HOME}/maintainer-quality-tools/travis/cfg/travis_run_pylint_beta.cfg  wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/.jslintrc -O ${HOME}/maintainer-quality-tools/travis/cfg/.jslintrc # Ugly patch to apply https://github.com/PyCQA/pylint/pull/1055  # For pylint >= 2.2.0  wget -q https://raw.githubusercontent.com/vauxoo/pylint-conf/master/conf/pylint_pr1055_fix_3.patch -O /tmp/pylint_pr1055_3.patch  patch -f -p0 $(python -c "from __future__ import print_function; from pylint.checkers import similar; print(similar.__file__.rstrip('c'))") -i /tmp/pylint_pr1055_3.patch  # For older ones wget -q https://raw.githubusercontent.com/Vauxoo/pylint-conf/master/conf/pylint_pr1055.patch -O /tmp/pylint_pr1055.patch  patch -f -p0 $(python -c "from __future__ import print_function; from pylint.checkers import similar; print(similar.__file__.rstrip('c'))") -i /tmp/pylint_pr1055.patch fi WARNING: You are using pip version 20.2.3; however, version 21.0 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command. dirname ${BASH_SOURCE[0]} --2021-01-27 22:13:51-- https://raw.githubusercontent.com/vauxoo/pylint-odoo/master/requirements.txt Resolving raw.githubusercontent.com (raw.githubusercontent.com)... 151.101.0.133, 151.101.64.133, 151.101.128.133, ... Connecting to raw.githubusercontent.com (raw.githubusercontent.com)|151.101.0.133|:443... connected. HTTP request sent, awaiting response... 200 OK Length: 321 [text/plain] Saving to: ‘/home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt’  0K   100% 17.0M=0s 2021-01-27 22:13:51 (17.0 MB/s) - ‘/home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt’ saved [321/321] dirname ${BASH_SOURCE[0]} Ignoring Pygments: markers 'python_version < "3"' don't match your environment Ignoring pylint: markers 'python_version < "3"' don't match your environment Requirement already up-to-date: docutils==0.16 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 1)) (0.16) Collecting lxml>=4.2.3 Downloading lxml-4.6.2-cp36-cp36m-manylinux1_x86_64.whl (5.5 MB) Requirement already up-to-date: polib==1.1.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 3)) (1.1.0) Requirement already up-to-date: Pygments==2.6.1 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 5)) (2.6.1) Requirement already up-to-date: pylint-plugin-utils==0.6 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 6)) (0.6) Collecting pylint==2.6.0 Downloading pylint-2.6.0-py3-none-any.whl (325 kB) Requirement already up-to-date: restructuredtext_lint==1.3.1 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 9)) (1.3.1) Requirement already up-to-date: rfc3986 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 10)) (1.4.0) Requirement already up-to-date: six in /usr/local/lib/python3.6/dist-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 11)) (1.15.0) Requirement already up-to-date: whichcraft in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 12)) (0.6.1) Requirement already up-to-date: translate-toolkit==2.3 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 14)) (2.3.0) Requirement already satisfied, skipping upgrade: isort<6,>=4.2.5 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from pylint==2.6.0->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 8)) (4.3.4) Requirement already satisfied, skipping upgrade: toml>=0.7.1 in /usr/local/lib/python3.6/dist-packages (from pylint==2.6.0->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 8)) (0.10.1) Requirement already satisfied, skipping upgrade: astroid<=2.5,>=2.4.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from pylint==2.6.0->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 8)) (2.4.2) Requirement already satisfied, skipping upgrade: mccabe<0.7,>=0.6 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from pylint==2.6.0->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 8)) (0.6.1) Requirement already satisfied, skipping upgrade: diff-match-patch==20121119 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from translate-toolkit==2.3->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 14)) (20121119) Requirement already satisfied, skipping upgrade: typed-ast<1.5,>=1.4.0; implementation_name == "cpython" and python_version < "3.8" in /usr/local/lib/python3.6/dist-packages (from astroid<=2.5,>=2.4.0->pylint==2.6.0->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 8)) (1.4.1) Requirement already satisfied, skipping upgrade: lazy-object-proxy==1.4.* in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from astroid<=2.5,>=2.4.0->pylint==2.6.0->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 8)) (1.4.3) Requirement already satisfied, skipping upgrade: wrapt~=1.11 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from astroid<=2.5,>=2.4.0->pylint==2.6.0->-r /home/odoo/maintainer-quality-tools/travis/pylint_odoo_requirements.txt (line 8)) (1.12.1) Installing collected packages: lxml, pylint Attempting uninstall: lxml Found existing installation: lxml 4.5.2 Uninstalling lxml-4.5.2: Successfully uninstalled lxml-4.5.2 Attempting uninstall: pylint Found existing installation: pylint 2.5.3 Uninstalling pylint-2.5.3: Successfully uninstalled pylint-2.5.3 Successfully installed lxml-4.6.2 pylint-2.6.0 ERROR: After October 2020 you may experience errors when installing or updating packages. This is because pip will change the way that it resolves dependency conflicts. We recommend you use --use-feature=2020-resolver to test your packages with the new resolver before it becomes the default. pylint-odoo 0.0.1.dev513 requires pylint==2.5.3; python_version >= "3", but you'll have pylint 2.6.0 which is incompatible. WARNING: You are using pip version 20.2.3; however, version 21.0 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command. Requirement already satisfied: pbr in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (5.5.0) WARNING: You are using pip version 20.2.3; however, version 21.0 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command. Collecting git+https://github.com/vauxoo/pylint-odoo.git Cloning https://github.com/vauxoo/pylint-odoo.git to /tmp/pip-req-build-ugzl7mhr Building wheels for collected packages: pylint-odoo Building wheel for pylint-odoo (setup.py): started Building wheel for pylint-odoo (setup.py): finished with status 'done' Created wheel for pylint-odoo: filename=pylint_odoo-0.0.1.dev532-py3-none-any.whl size=90669 sha256=8442a11fbdf5cb8a7609c808db5711055cc9d5eb3acd0971e9ebcc6c1d6458b2 Stored in directory: /tmp/pip-ephem-wheel-cache-8fzjgdw9/wheels/33/aa/aa/c41a67050e06f833ef60a7067a415a2fa7f3849b198fac4b24 Successfully built pylint-odoo Installing collected packages: pylint-odoo Attempting uninstall: pylint-odoo Found existing installation: pylint-odoo 0.0.1.dev513 Uninstalling pylint-odoo-0.0.1.dev513: Successfully uninstalled pylint-odoo-0.0.1.dev513 Successfully installed pylint-odoo-0.0.1.dev532 WARNING: You are using pip version 20.2.3; however, version 21.0 is available. You should consider upgrading via the '/.repo_requirements/virtualenv/python3.6/bin/python -m pip install --upgrade pip' command. /.repo_requirements/virtualenv/nodejs/bin/eslint -> /.repo_requirements/virtualenv/nodejs/lib/node_modules/eslint/bin/eslint.js + eslint@7.18.0 added 8 packages from 7 contributors, removed 5 packages and updated 21 packages in 8.505s python -c "from __future__ import print_function; from pylint.checkers import similar; print(similar.__file__.rstrip('c'))" patching file /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages/pylint/checkers/similar.py Hunk #1 succeeded at 51 (offset 1 line). Hunk #2 succeeded at 66 (offset 1 line). Hunk #3 succeeded at 159 (offset 1 line). Hunk #4 succeeded at 180 with fuzz 1 (offset 1 line). Hunk #5 succeeded at 218 (offset 3 lines). Hunk #6 succeeded at 380 (offset 3 lines). python -c "from __future__ import print_function; from pylint.checkers import similar; print(similar.__file__.rstrip('c'))" patching file /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages/pylint/checkers/similar.py Hunk #1 FAILED at 31. Hunk #2 FAILED at 42. Hunk #3 FAILED at 126. Hunk #4 FAILED at 158. Hunk #5 FAILED at 290. 5 out of 5 hunks FAILED -- saving rejects to file /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages/pylint/checkers/similar.py.rej  # We can exit here and do nothing if this only a LINT check if [ "${TESTS}" != "1" ] && [ "${LINT_CHECK}" == "1" ]; then  exit 0 fi  # Install less ln -s `which nodejs` $HOME/maintainer-quality-tools/travis/node which nodejs npm install -g less@3.0.4 less-plugin-clean-css npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 npm WARN deprecated har-validator@5.1.5: this library is no longer supported /.repo_requirements/virtualenv/nodejs/bin/lessc -> /.repo_requirements/virtualenv/nodejs/lib/node_modules/less/bin/lessc + less-plugin-clean-css@1.5.1 + less@3.0.4 added 64 packages from 105 contributors in 3.908s  if [ "${WEBSITE_REPO}" == "1" ]; then if [ -f ~/.rvm/scripts/rvm ]; then source ~/.rvm/scripts/rvm else source /usr/local/rvm/scripts/rvm fi rvm install ruby --latest rvm use ruby --latest # Uninstall current versions to be sure that # the correct version will be installed  gem uninstall -aIx bootstrap-sass compass sass gem install compass bootstrap-sass fi  # Update PhantomJS (v10 compat) if [ "${PHANTOMJS_VERSION}" != "OS" ]; then npm install --prefix ${TRAVIS_BUILD_DIR} "phantomjs-prebuilt@${PHANTOMJS_VERSION:=latest}"  ln -s "${TRAVIS_BUILD_DIR}/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs" "${HOME}/maintainer-quality-tools/travis/phantomjs" fi npm WARN deprecated phantomjs-prebuilt@2.1.16: this package is now deprecated npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 npm WARN deprecated har-validator@5.1.5: this library is no longer supported  > phantomjs-prebuilt@2.1.16 install /home/odoo/build/vauxoo/enterprise-pe/node_modules/phantomjs-prebuilt > node install.js Considering PhantomJS found at /usr/bin/phantomjs Found PhantomJS at /usr/bin/phantomjs ...verifying PhantomJS detected, but wrong version 1.9.0 @ /usr/bin/phantomjs. Downloading https://github.com/Medium/phantomjs/releases/download/v2.1.1/phantomjs-2.1.1-linux-x86_64.tar.bz2 Saving to /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2 Receiving... Received 22866K total. Extracting tar contents (via spawned process) Removing /home/odoo/build/vauxoo/enterprise-pe/node_modules/phantomjs-prebuilt/lib/phantom Copying extracted folder /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2-extract-1611785664172/phantomjs-2.1.1-linux-x86_64 -> /home/odoo/build/vauxoo/enterprise-pe/node_modules/phantomjs-prebuilt/lib/phantom Writing location.js file Done. Phantomjs binary available at /home/odoo/build/vauxoo/enterprise-pe/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs npm WARN saveError ENOENT: no such file or directory, open '/home/odoo/build/vauxoo/enterprise-pe/package.json' npm notice created a lockfile as package-lock.json. You should commit this file. npm WARN enoent ENOENT: no such file or directory, open '/home/odoo/build/vauxoo/enterprise-pe/package.json' npm WARN enterprise-pe No description npm WARN enterprise-pe No repository field. npm WARN enterprise-pe No README data npm WARN enterprise-pe No license field.  + phantomjs-prebuilt@2.1.16 added 81 packages from 77 contributors and audited 81 packages in 8.938s 1 package is looking for funding run `npm fund` for details found 0 vulnerabilities  # For backward compatibility, take version from parameter if it's not globally set if [ "x${VERSION}" == "x" ] ; then VERSION="${1}" echo "WARNING: no env variable set for VERSION. Using '${1}'." fi  if [ "x${ODOO_BRANCH}" == "x" ] ; then ODOO_BRANCH=${VERSION} fi  : ${ODOO_REPO:="odoo/odoo"} # default value, if not set IFS="/" read -a REPO <<< "${ODOO_REPO}" # ODOO_URL="https://github.com/${REPO[0]}/${REPO[1]}/archive/${VERSION}.tar.gz" ODOO_URL="https://github.com/${REPO[0]}/${REPO[1]}.git"  echo ${REPO_REQUIREMENTS} /.repo_requirements export REMOTE=$(python -c "from __future__ import print_function; print('${REPO[0]}'.lower())") python -c "from __future__ import print_function; print('${REPO[0]}'.lower())" export BRANCH=$(python -c "from __future__ import print_function; print('${ODOO_BRANCH}'.lower())") python -c "from __future__ import print_function; print('${ODOO_BRANCH}'.lower())" export PULL_REQUEST='' # If the branch is a pull request if [[ $BRANCH == *"/"* ]]; then  export PULL_REQUEST=$BRANCH export BRANCH=${BRANCH/\//-} fi export ODOO_PATH=${HOME}/${REPO[1]}-${ODOO_BRANCH}  echo "Installing Odoo from cache" Installing Odoo from cache ODOO_URL="https://github.com/${ODOO_REPO}" if [ "x${REPO_REQUIREMENTS}" == "x" ] ; then export ODOO_PATH=${HOME}/${REPO[1]}-${BRANCH} else  # chown executed from original image chown `(whoami)`:`(whoami)` -R ${REPO_REQUIREMENTS}/odoo  ln -sf ${REPO_REQUIREMENTS}/odoo ${ODOO_PATH} fi  git init ${ODOO_PATH} Reinitialized existing Git repository in /.repo_requirements/odoo/.git/ cd ${ODOO_PATH} git remote add ${REMOTE} ${ODOO_URL} fatal: remote vauxoo-dev already exists.  if [ "x${PULL_REQUEST}" == "x" ] ; then  git fetch --depth=1 ${REMOTE} ${ODOO_BRANCH} \ && git config --local --bool core.bare false \  && git checkout -b ${ODOO_BRANCH}-${REMOTE} -qf ${REMOTE}/${ODOO_BRANCH} \ ; git reset --hard ${REMOTE}/${ODOO_BRANCH} else ODOO_URL="https://github.com/${ODOO_REPO}"  # Is a pull request git reset --hard  git fetch --depth=1 ${REMOTE} $PULL_REQUEST/head:${BRANCH}-${REMOTE} \ && git config --local --bool core.bare false \  && git checkout ${BRANCH}-${REMOTE} \ ; fi From https://github.com/vauxoo-dev/odoo * branch 13.0-pre-merge-ubl -> FETCH_HEAD  * [new branch] 13.0-pre-merge-ubl -> vauxoo-dev/13.0-pre-merge-ubl HEAD is now at 89d5772bf Merge branch '13.0' of github.com:odoo/odoo into 13.0-pre-merge-ubl  echo "x${PHANTOMJS_TESTS}" if [ "x${PHANTOMJS_TESTS}" == "x0" ]; then # Disable phantom tests sed -i "s/'phantomjs'/'disable_phantomjs'/g" ${HOME}/*/openerp/tests/common.py  sed -i "s/'phantomjs'/'disable_phantomjs'/g" ${HOME}/*/odoo/tests/common.py else # Increase default timeout of all phantom tests x  sed -i "s/ login=None, timeout=60, / login=None, timeout=360, /g" ${HOME}/*/openerp/tests/common.py sed -i "s/ login=None, timeout=60, / login=None, timeout=360, /g" ${HOME}/*/odoo/tests/common.py  # Increase default delay of all phantom tests sed -i "s/defaultDelay: 50,/defaultDelay: 120,/g" ${HOME}/*/addons/web/static/src/js/tour.js fi sed: can't read /home/odoo/*/openerp/tests/common.py: No such file or directory sed: can't read /home/odoo/*/addons/web/static/src/js/tour.js: No such file or directory  # Workaround to force using system site packages (see https://github.com/Shippable/support/issues/241#issuecomment-57947925) rm -f $VIRTUAL_ENV/lib/python2.7/no-global-site-packages.txt  echo "Installing odoo dependencies" # Odoo <= 7.0 don't have requirements.txt file then the 8.0 file is used by default if [ ! -f ${ODOO_PATH}/requirements.txt ]; then wget https://raw.githubusercontent.com/odoo/odoo/8.0/requirements.txt -O ${ODOO_PATH}/requirements.txt fi # Remove python-ldap from odoo requirements because is not a common module used sed -i '/^python-ldap\=\=/d' ${ODOO_PATH}/requirements.txt Installing odoo dependencies # Use requests with [security] suffix to fix [Errno 111] Connection refused for old python2.7 versions. sed -i 's/^requests\=\=/requests[security]\=\=/g' ${ODOO_PATH}/requirements.txt  pip install --upgrade pip Collecting pip Downloading pip-21.0-py3-none-any.whl (1.5 MB) Installing collected packages: pip Attempting uninstall: pip Found existing installation: pip 20.2.3 Uninstalling pip-20.2.3: Successfully uninstalled pip-20.2.3 Successfully installed pip-21.0 pip install --no-binary pycparser -r ${ODOO_PATH}/requirements.txt Ignoring gevent: markers 'python_version >= "3.7"' don't match your environment Ignoring gevent: markers 'sys_platform == "win32" and python_version < "3.7"' don't match your environment Ignoring greenlet: markers 'python_version >= "3.7"' don't match your environment Ignoring lxml: markers 'sys_platform != "win32" and python_version >= "3.7"' don't match your environment Ignoring lxml: markers 'sys_platform == "win32"' don't match your environment Ignoring Pillow: markers 'sys_platform == "win32" and python_version >= "3.7"' don't match your environment Ignoring psycopg2: markers 'sys_platform == "win32" or python_version >= "3.8"' don't match your environment Ignoring Werkzeug: markers 'sys_platform == "win32"' don't match your environment Ignoring pypiwin32: markers 'sys_platform == "win32"' don't match your environment Collecting Babel==2.6.0 Downloading Babel-2.6.0-py2.py3-none-any.whl (8.1 MB) Requirement already satisfied: chardet==3.0.4 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 2)) (3.0.4) Collecting decorator==4.3.0 Downloading decorator-4.3.0-py2.py3-none-any.whl (9.2 kB) Collecting docutils==0.14 Downloading docutils-0.14-py3-none-any.whl (543 kB) Collecting ebaysdk==2.1.5 Downloading ebaysdk-2.1.5.tar.gz (42 kB) Collecting feedparser==5.2.1 Downloading feedparser-5.2.1.zip (1.2 MB) Collecting gevent==1.1.2 Downloading gevent-1.1.2.tar.gz (2.0 MB) Collecting greenlet==0.4.10 Downloading greenlet-0.4.10.zip (82 kB) Collecting html2text==2018.1.9 Downloading html2text-2018.1.9-py3-none-any.whl (21 kB) Collecting Jinja2==2.10.1 Downloading Jinja2-2.10.1-py2.py3-none-any.whl (124 kB) Collecting libsass==0.17.0 Downloading libsass-0.17.0-cp36-cp36m-manylinux1_x86_64.whl (9.2 MB) Collecting lxml==3.7.1 Downloading lxml-3.7.1.tar.gz (3.8 MB) Collecting Mako==1.0.7 Downloading Mako-1.0.7.tar.gz (564 kB) Collecting MarkupSafe==1.1.0 Downloading MarkupSafe-1.1.0-cp36-cp36m-manylinux1_x86_64.whl (27 kB) Collecting mock==2.0.0 Downloading mock-2.0.0-py2.py3-none-any.whl (56 kB) Collecting num2words==0.5.6 Downloading num2words-0.5.6-py2.py3-none-any.whl (64 kB) Collecting ofxparse==0.19 Downloading ofxparse-0.19.tar.gz (54 kB) Collecting passlib==1.7.1 Downloading passlib-1.7.1-py2.py3-none-any.whl (498 kB) Collecting Pillow==5.4.1 Downloading Pillow-5.4.1-cp36-cp36m-manylinux1_x86_64.whl (2.0 MB) Requirement already satisfied: polib==1.1.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 26)) (1.1.0) Collecting psutil==5.6.6 Downloading psutil-5.6.6.tar.gz (447 kB) Collecting psycopg2==2.7.7 Downloading psycopg2-2.7.7-cp36-cp36m-manylinux1_x86_64.whl (2.7 MB) Collecting pydot==1.4.1 Downloading pydot-1.4.1-py2.py3-none-any.whl (19 kB) Collecting pyparsing==2.2.0 Downloading pyparsing-2.2.0-py2.py3-none-any.whl (56 kB) Requirement already satisfied: PyPDF2==1.26.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 32)) (1.26.0) Requirement already satisfied: pyserial==3.4 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from -r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 33)) (3.4) Collecting python-dateutil==2.7.3 Downloading python_dateutil-2.7.3-py2.py3-none-any.whl (211 kB) Collecting pytz==2019.1 Downloading pytz-2019.1-py2.py3-none-any.whl (510 kB) Collecting pyusb==1.0.2 Downloading pyusb-1.0.2.tar.gz (54 kB) Collecting qrcode==6.1 Downloading qrcode-6.1-py2.py3-none-any.whl (31 kB) Collecting reportlab==3.5.13 Downloading reportlab-3.5.13-cp36-cp36m-manylinux1_x86_64.whl (2.6 MB) Collecting requests[security]==2.21.0 Downloading requests-2.21.0-py2.py3-none-any.whl (57 kB) Collecting zeep==3.2.0 Downloading zeep-3.2.0-py2.py3-none-any.whl (98 kB) Collecting vatnumber==1.2 Downloading vatnumber-1.2.tar.gz (19 kB) Collecting vobject==0.9.6.1 Downloading vobject-0.9.6.1.tar.gz (58 kB) Collecting Werkzeug==0.14.1 Downloading Werkzeug-0.14.1-py2.py3-none-any.whl (322 kB) Collecting XlsxWriter==1.1.2 Downloading XlsxWriter-1.1.2-py2.py3-none-any.whl (142 kB) Collecting xlwt==1.3.* Downloading xlwt-1.3.0-py2.py3-none-any.whl (99 kB) Collecting xlrd==1.1.0 Downloading xlrd-1.1.0-py2.py3-none-any.whl (108 kB) Requirement already satisfied: requests in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from ebaysdk==2.1.5->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 5)) (2.24.0) Requirement already satisfied: six in /usr/local/lib/python3.6/dist-packages (from libsass==0.17.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 14)) (1.15.0) Requirement already satisfied: pbr>=0.11 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from mock==2.0.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 20)) (5.5.0) Requirement already satisfied: beautifulsoup4 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from ofxparse==0.19->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 22)) (4.9.3) Requirement already satisfied: certifi>=2017.4.17 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (2020.6.20) Collecting urllib3<1.25,>=1.21.1 Downloading urllib3-1.24.3-py2.py3-none-any.whl (118 kB) Collecting idna<2.9,>=2.5 Downloading idna-2.8-py2.py3-none-any.whl (58 kB) Requirement already satisfied: pyOpenSSL>=0.14 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (19.1.0) Requirement already satisfied: idna>=2.0.0 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (2.10) Requirement already satisfied: cryptography>=1.3.4 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (3.1.1) Collecting python-stdnum Downloading python_stdnum-1.15-py2.py3-none-any.whl (908 kB) Collecting defusedxml>=0.4.1 Downloading defusedxml-0.6.0-py2.py3-none-any.whl (23 kB) Collecting requests-toolbelt>=0.7.1 Downloading requests_toolbelt-0.9.1-py2.py3-none-any.whl (54 kB) Collecting attrs>=17.2.0 Downloading attrs-20.3.0-py2.py3-none-any.whl (49 kB) Collecting cached-property>=1.3.0 Downloading cached_property-1.5.2-py2.py3-none-any.whl (7.6 kB) Requirement already satisfied: appdirs>=1.4.0 in /usr/local/lib/python3.6/dist-packages (from zeep==3.2.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 40)) (1.4.4) Collecting isodate>=0.5.4 Downloading isodate-0.6.0-py2.py3-none-any.whl (45 kB) Requirement already satisfied: cffi!=1.11.3,>=1.8 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from cryptography>=1.3.4->requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (1.14.3) Requirement already satisfied: pycparser in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from cffi!=1.11.3,>=1.8->cryptography>=1.3.4->requests[security]==2.21.0->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 39)) (2.20) Requirement already satisfied: soupsieve>1.2 in /.repo_requirements/virtualenv/python3.6/lib/python3.6/site-packages (from beautifulsoup4->ofxparse==0.19->-r /home/odoo/odoo-13.0-pre-merge-ubl/requirements.txt (line 22)) (2.1) Building wheels for collected packages: ebaysdk, feedparser, gevent, greenlet, lxml, Mako, ofxparse, psutil, pyusb, vatnumber, vobject Building wheel for ebaysdk (setup.py): started Building wheel for ebaysdk (setup.py): finished with status 'done' Created wheel for ebaysdk: filename=ebaysdk-2.1.5-py3-none-any.whl size=62708 sha256=98b3b2dc03acd736f5cfcf27a9177257478ad51f7c2107a630d1318c9dadca59 Stored in directory: /home/odoo/.cache/pip/wheels/55/67/e7/f7665026b58f440760d050063fd6694c85e9d1bc4ba22405ca Building wheel for feedparser (setup.py): started Building wheel for feedparser (setup.py): finished with status 'done' Created wheel for feedparser: filename=feedparser-5.2.1-py3-none-any.whl size=44940 sha256=ff237beaed2c13072416010557f71a73ae37541b4426e2ee28a49bd6f3979be9 Stored in directory: /home/odoo/.cache/pip/wheels/60/4c/d6/d096a99d3d96af9af149c7d82c5969a0896bcce1ac2a15ccd6 Building wheel for gevent (setup.py): started Building wheel for gevent (setup.py): still running... Building wheel for gevent (setup.py): finished with status 'done' Created wheel for gevent: filename=gevent-1.1.2-cp36-cp36m-linux_x86_64.whl size=1307654 sha256=534bf10ee86056f668159a05f70c75a7a9f2935485c437edc20da0955e1d20ff Stored in directory: /home/odoo/.cache/pip/wheels/b1/67/63/64f28b1555c1df7f0c4e47d5883b935f0671557ac9c65822e7 Building wheel for greenlet (setup.py): started Building wheel for greenlet (setup.py): finished with status 'done' Created wheel for greenlet: filename=greenlet-0.4.10-cp36-cp36m-linux_x86_64.whl size=41437 sha256=ff6f715a4b852e14acbd683ff668fe43ccc8ae0d62b94cf785c9e483328ac19c Stored in directory: /home/odoo/.cache/pip/wheels/19/90/10/5861f77fe5f7a14c892c44999f255374eb88e3401b64cb4d9d Building wheel for lxml (setup.py): started Building wheel for lxml (setup.py): still running... Building wheel for lxml (setup.py): finished with status 'done' Created wheel for lxml: filename=lxml-3.7.1-cp36-cp36m-linux_x86_64.whl size=3678006 sha256=c7593573823d504941b7c2bd53a104632c2332db1dcbf8d18d512a4206c4224d Stored in directory: /home/odoo/.cache/pip/wheels/a9/3e/9b/f94a04eb81f26c375d88d49cedde289388928c49f622ee349c Building wheel for Mako (setup.py): started Building wheel for Mako (setup.py): finished with status 'done' Created wheel for Mako: filename=Mako-1.0.7-py3-none-any.whl size=76582 sha256=7016b9e330c02128a3e39b56527104a3da1255521ad10825412d33a3c28ffe11 Stored in directory: /home/odoo/.cache/pip/wheels/9a/70/b0/3459851bb891c90f609378c6d02d9ac972a6ed5e92aa000e0b Building wheel for ofxparse (setup.py): started Building wheel for ofxparse (setup.py): finished with status 'done' Created wheel for ofxparse: filename=ofxparse-0.19-py3-none-any.whl size=35350 sha256=e4ade24101b8efc2359ec6504f33bd84acde291a0241fe32629fadfd51b39249 Stored in directory: /home/odoo/.cache/pip/wheels/98/47/88/77bb97f80045742bd1308bf7f1d504cffcb7c05d264415b7f9 Building wheel for psutil (setup.py): started Building wheel for psutil (setup.py): finished with status 'done' Created wheel for psutil: filename=psutil-5.6.6-cp36-cp36m-linux_x86_64.whl size=258621 sha256=2296e065eb61d2cb7123a822af1cca538deaf314773c7b065877f18c56db5ba0 Stored in directory: /home/odoo/.cache/pip/wheels/1c/02/08/5519c2e5ce9888173991b4b979d5a0407232bd92620ac40807 Building wheel for pyusb (setup.py): started Building wheel for pyusb (setup.py): finished with status 'done' Created wheel for pyusb: filename=pyusb-1.0.2-py3-none-any.whl size=57021 sha256=b501c7336b0b8ecf20267b91b38ac775aa23c21ff544026ecb5119e84bbd5e3f Stored in directory: /home/odoo/.cache/pip/wheels/13/b4/3d/1f8420a5a9cb4d02575d5b46f1e1017998c112be0a3c7c0ff0 Building wheel for vatnumber (setup.py): started Building wheel for vatnumber (setup.py): finished with status 'done' Created wheel for vatnumber: filename=vatnumber-1.2-py3-none-any.whl size=17521 sha256=0b6e56f3c2c6ca06e4ef73cd5f49e076c8707c61ef37d764a2a31100c8bd3edf Stored in directory: /home/odoo/.cache/pip/wheels/e0/e0/11/6ea94ea77d2c56e30683617aebd5b8f9707f1bf3a3a5764426 Building wheel for vobject (setup.py): started Building wheel for vobject (setup.py): finished with status 'done' Created wheel for vobject: filename=vobject-0.9.6.1-py3-none-any.whl size=47662 sha256=40e1025301444148225a1856780501df7baa6acf94874ac1b7b60fa6f1268137 Stored in directory: /home/odoo/.cache/pip/wheels/85/3c/61/f76d72ab7e65afe40edc14680f7880439d8201444b0165d837 Successfully built ebaysdk feedparser gevent greenlet lxml Mako ofxparse psutil pyusb vatnumber vobject Installing collected packages: urllib3, idna, requests, requests-toolbelt, pytz, python-stdnum, python-dateutil, pyparsing, Pillow, MarkupSafe, lxml, isodate, greenlet, defusedxml, cached-property, attrs, zeep, xlwt, XlsxWriter, xlrd, Werkzeug, vobject, vatnumber, reportlab, qrcode, pyusb, pydot, psycopg2, psutil, passlib, ofxparse, num2words, mock, Mako, libsass, Jinja2, html2text, gevent, feedparser, ebaysdk, docutils, decorator, Babel Attempting uninstall: urllib3 Found existing installation: urllib3 1.25.10 Uninstalling urllib3-1.25.10: Successfully uninstalled urllib3-1.25.10 Attempting uninstall: idna Found existing installation: idna 2.10 Uninstalling idna-2.10: Successfully uninstalled idna-2.10 Attempting uninstall: requests Found existing installation: requests 2.24.0 Uninstalling requests-2.24.0: Successfully uninstalled requests-2.24.0 Attempting uninstall: lxml Found existing installation: lxml 4.6.2 Uninstalling lxml-4.6.2: Successfully uninstalled lxml-4.6.2 Attempting uninstall: ofxparse Found existing installation: ofxparse 0.20 Uninstalling ofxparse-0.20: Successfully uninstalled ofxparse-0.20 Attempting uninstall: docutils Found existing installation: docutils 0.16 Uninstalling docutils-0.16: Successfully uninstalled docutils-0.16 Successfully installed Babel-2.6.0 Jinja2-2.10.1 Mako-1.0.7 MarkupSafe-1.1.0 Pillow-5.4.1 Werkzeug-0.14.1 XlsxWriter-1.1.2 attrs-20.3.0 cached-property-1.5.2 decorator-4.3.0 defusedxml-0.6.0 docutils-0.14 ebaysdk-2.1.5 feedparser-5.2.1 gevent-1.1.2 greenlet-0.4.10 html2text-2018.1.9 idna-2.8 isodate-0.6.0 libsass-0.17.0 lxml-3.7.1 mock-2.0.0 num2words-0.5.6 ofxparse-0.19 passlib-1.7.1 psutil-5.6.6 psycopg2-2.7.7 pydot-1.4.1 pyparsing-2.2.0 python-dateutil-2.7.3 python-stdnum-1.15 pytz-2019.1 pyusb-1.0.2 qrcode-6.1 reportlab-3.5.13 requests-2.21.0 requests-toolbelt-0.9.1 urllib3-1.24.3 vatnumber-1.2 vobject-0.9.6.1 xlrd-1.1.0 xlwt-1.3.0 zeep-3.2.0 ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. pylint-odoo 0.0.1.dev532 requires docutils==0.16, but you have docutils 0.14 which is incompatible. pylint-odoo 0.0.1.dev532 requires lxml>=4.2.3, but you have lxml 3.7.1 which is incompatible. Adding git.vauxoo.com ECDSA key fingerprint  if [ "x${WITHOUT_DEPENDENCIES}" == "x" ] ; then echo "Installing dependencies" pip install -q --no-binary pycparser -r ${HOME}/maintainer-quality-tools/requirements.txt pip install -q QUnitSuite coveralls codecov pip install pstats_print2list pip install certifi pip install -U urllib3[secure] setuptools==33.1.1 pip install ndg-httpsclient # Install new dependence: npm package wget -qO- https://deb.nodesource.com/setup | sudo bash - apt-get install nodejs fi echo "Adding git.vauxoo.com ECDSA key fingerprint" ssh-keyscan git.vauxoo.com >>~/.ssh/known_hosts # git.vauxoo.com SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.10 # git.vauxoo.com SSH-2.0-OpenSSH_7.2p2 Ubuntu-4ubuntu2.10 Adding birbucket ECDSA key fingerprint echo "Adding birbucket ECDSA key fingerprint" ssh-keyscan bitbucket.org >>~/.ssh/known_hosts # bitbucket.org SSH-2.0-conker_b9a79bcd5e-dirty conker-3000 # bitbucket.org SSH-2.0-conker_b9a79bcd5e-dirty conker-3002 no hostkey alg  echo "Getting addons dependencies" Getting addons dependencies clone_oca_dependencies ${HOME} ${TRAVIS_BUILD_DIR}/.. INFO:root:examining enterprise-pe INFO:root:* processing enterprise INFO:root:Calling git clone -q git@github.com:Vauxoo-dev/enterprise.git -b 13.0-pre-merge-ubl-umiphos /home/odoo/enterprise INFO:root:* processing server-tools INFO:root:Calling git clone -q git@github.com:Vauxoo/server-tools.git -b 13.0 /home/odoo/server-tools INFO:root:Calling pip install --no-binary pycparser -Ur /home/odoo/server-tools/requirements.txt Collecting raven Downloading raven-6.10.0-py2.py3-none-any.whl (284 kB) Installing collected packages: raven Successfully installed raven-6.10.0 clone_result=$? if [ "$clone_result" != "0" ]; then echo "Error cloning dependencies" exit $clone_result fi; # if [[ "$VERSION" == "10.0" && -z "$NO_EXTRA_REPOS" ]]; then # Install profiler module # TODO: Fix error using runbot testing for vx/mexico#10.0 # git clone --single-branch --depth=1 https://github.com/Vauxoo/odoo-profiler.git -b ${VERSION} ${HOME}/odoo-profiler \ # && sed -i "s/'auto_install': False/'auto_install': True/g" ${HOME}/odoo-profiler/profiler/__manifest__.py # Install web ribbon # git clone --single-branch --depth=1 https://github.com/OCA/web.git -b ${VERSION} ${HOME}/web-environment-ribbon-isolated \ # && sed -i 's/"auto_install": False/"auto_install": True/g' ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon/__manifest__.py \ # && sed -i 's/TEST/DEVELOPMENT/g' ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon/data/ribbon_data.xml \ # && find ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon -type f ! -name "__init__.py" -exec sed -i "s/web_environment_ribbon/web_environment_ribbon_isolated/g" {} \; \ # && (cd ${HOME}/web-environment-ribbon-isolated; rm -rf $(ls | grep -v web_environment_ribbon$); mv web_environment_ribbon web_environment_ribbon_isolated ) # Install odoolint module # Install module that disable html in the logs # echo "Install odoo lint SQA isolated" # git clone --single-branch --depth=1 https://github.com/vauxoo/server-tools.git -b ${VERSION} ${HOME}/odoolintsqa # (cd ${HOME}/odoolintsqa; mv odoolint odoolint_isolated; mv tour_hide_dom_log tour_hide_dom_log_isolated; rm -rf $(ls | grep -v '_isolated')) # sed -i 's/"auto_install": False/"auto_install": True/g' ${HOME}/odoolintsqa/*/__manifest__.py # sed -i "s/'auto_install': False/'auto_install': True/g" ${HOME}/odoolintsqa/*/__manifest__.py # sed -i 's/tour_hide_dom_log/tour_hide_dom_log_isolated/g' ${HOME}/odoolintsqa/tour_hide_dom_log_isolated/views/assets.xml # fi; if [[ "$VERSION" == "8.0" && -z "$NO_EXTRA_REPOS" ]]; then # Install web ribbon git clone --single-branch --depth=1 https://github.com/OCA/web.git -b ${VERSION} ${HOME}/web-environment-ribbon-isolated \  && sed -i 's/"auto_install": False/"auto_install": True/g' ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon/__openerp__.py \ && sed -i 's/TEST/DEVELOPMENT/g' ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon/data/ribbon_data.xml \ && find ${HOME}/web-environment-ribbon-isolated/web_environment_ribbon -type f ! -name "__init__.py" -exec sed -i "s/web_environment_ribbon/web_environment_ribbon_isolated/g" {} \; \  && (cd ${HOME}/web-environment-ribbon-isolated; rm -rf $(ls | grep -v web_environment_ribbon$); mv web_environment_ribbon web_environment_ribbon_isolated ) # Install profiler module git clone --single-branch --depth=1 https://github.com/Vauxoo/odoo-profiler.git -b ${VERSION} ${HOME}/odoo-profiler \  && sed -i "s/'auto_install': False/'auto_install': True/g" ${HOME}/odoo-profiler/profiler/__openerp__.py \ # Install odoolint module # Install module that disable html in the logs echo "Install odoo lint SQA isolated"  git clone --single-branch --depth=1 https://github.com/vauxoo/server-tools.git -b ${VERSION} ${HOME}/odoolintsqa  (cd ${HOME}/odoolintsqa; mv odoolint odoolint_isolated; mv tour_hide_dom_log tour_hide_dom_log_isolated; rm -rf $(ls | grep -v '_isolated')) sed -i 's/"auto_install": False/"auto_install": True/g' ${HOME}/odoolintsqa/*/__openerp__.py sed -i "s/'auto_install': False/'auto_install': True/g" ${HOME}/odoolintsqa/*/__openerp__.py sed -i 's/tour_hide_dom_log/tour_hide_dom_log_isolated/g' ${HOME}/odoolintsqa/tour_hide_dom_log_isolated/views/assets.xml fi; # Use reference .coveragerc cp ${HOME}/maintainer-quality-tools/cfg/.coveragerc ${TRAVIS_BUILD_DIR}  # Expected directory structure: # # HOME/ # |___ -/ <-- Odoo Server # |___ maintainer-quality-tools/ # |___ build/// # |___ / # |___ / # |... echo "Content of ${HOME}:" ls -l ${HOME} Content of /home/odoo: total 28 drwxr-xr-x 1 odoo odoo 4096 Jan 27 22:13 build drwxr-xr-x 236 odoo odoo 12288 Jan 27 22:18 enterprise drwxr-xr-x 8 odoo odoo 4096 Jan 27 22:13 maintainer-quality-tools lrwxrwxrwx 1 odoo odoo 24 Jan 27 22:14 odoo-13.0-pre-merge-ubl -> /.repo_requirements/odoo drwxr-xr-x 24 odoo odoo 4096 Jan 27 22:18 server-tools lrwxrwxrwx 1 root root 25 Oct 14 23:27 tools -> /.repo_requirements/tools  if [ "x${WKHTMLTOPDF_VERSION}" == "x" ] ; then  WKHTMLTOPDF_VERSION="0.12.5" fi echo "Installing webkit (wkhtmltopdf) patched version ${WKHTMLTOPDF_VERSION}" case ${WKHTMLTOPDF_VERSION} in 0.12.[15]) Installing webkit (wkhtmltopdf) patched version 0.12.5  # these versions need to be installed via .deb if [[ ${WKHTMLTOPDF_VERSION} == "0.12.5" ]]; then  wk_installer="wkhtmltox_${WKHTMLTOPDF_VERSION}-1.$(lsb_release -sc)_amd64.deb" else wk_installer="wkhtmltox-${WKHTMLTOPDF_VERSION}_linux-$(lsb_release -sc)-amd64.deb"  fi wget -q --timeout=240 https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/${WKHTMLTOPDF_VERSION}/${wk_installer} -O wkhtmltox.deb  dpkg --extract wkhtmltox.deb wkhtmltox.deb_files  cp wkhtmltox.deb_files/usr/local/bin/wkhtmltopdf ${HOME}/maintainer-quality-tools/travis/wkhtmltopdf rm -r wkhtmltox.deb*;; "") ;; # Do nothing if no version was provided *)  (cd ${HOME}/maintainer-quality-tools/travis/ && wget -qO- -t 1 --timeout=240 https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/${WKHTMLTOPDF_VERSION}/wkhtmltox-${WKHTMLTOPDF_VERSION}_linux-generic-amd64.tar.xz | tar -xJ --strip-components=2 wkhtmltox/bin/wkhtmltopdf);; esac lsb_release -sc  wkhtmltopdf -V wkhtmltopdf 0.12.5 (with patched qt)  if [ "$PG_LOGS_ENABLE" == "1" ]; then python $(dirname ${BASH_SOURCE[0]})/psql_log.py fi  # Applying patches python $(dirname ${BASH_SOURCE[0]})/travis_apply_patches.py ${TRAVIS_BUILD_DIR}/patches.txt ${ODOO_PATH} ${HOME} dirname ${BASH_SOURCE[0]}  exit 0 Removing intermediate container 47ffeb948f89 ---> f88da522fa3b Step 24/24 : ENTRYPOINT /entrypoint.sh ---> Running in 5ee89954a00f Removing intermediate container 5ee89954a00f ---> bac863039512 Successfully built bac863039512 Successfully tagged vauxoo-enterprise-pe:e319da0_env_2_job_1