Name: Merge from upstream 17 20251028 01

State: Killed finished in 104m

PR State: merged

PR Author: Trinh Ngoc Hung

PR Author Email: ngochung207@gmail.com

PR: #1143

Committer:

Committer Email:

Commit: 8060988be59c122bdda3c638926e221c7979e986

Description:

Branch: 17.0

Instance ID: 0

Age:

Up-time:

Subbuilds Name State Detail
Build 349892 At install tests: from account to website_twitter 94m Killed Log
Build 349893 Post install tests: step install all modules 29m Killed Log
Build 349894 Post install tests: from account to hr_work_entry 60m Killed Log
Build 349895 Post install tests: from hr_work_entry_contract to pos_hr_restaurant 49m Killed Log
Build 349896 Post install tests: from pos_loyalty to sale_stock_margin 59m Killed Log
Build 349897 Post install tests: from sale_timesheet to to_multi_warehouse_access_control_sms 64m Killed Log
Build 349898 Post install tests: from to_odoo_module to viin_sign_sim_viettel 73m Killed Log
Build 349899 Post install tests: from viin_social to website_twitter 24m Killed Log
Create Date Level Message
11/02/2025 11:00:00 INFO
Updated repository Viindoo-tvtmaaddons
11/02/2025 11:00:00 INFO
Updated repository Viindoo-erponline-enterprise
11/02/2025 11:00:00 INFO
Updated repository Viindoo-branding
11/02/2025 11:00:00 INFO
Cloned repository Viindoo-odoo
12/11/2023 08:55:00
Using Docker Image Odoo 17 Ubuntu 22.04 Python 3.10:

FROM ubuntu:jammy

ENV LANG C.UTF-8

USER root

SHELL ["/bin/bash", "-c"]

# Install debian packages
RUN set -x ; \
apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends apt-transport-https build-essential ca-certificates curl ffmpeg file fonts-freefont-ttf fonts-noto-cjk gawk gnupg gsfonts libldap2-dev libjpeg9-dev libsasl2-dev libxslt1-dev lsb-release node-less ocrmypdf sed sudo unzip xfonts-75dpi zip zlib1g-dev git build-essential cython3 libffi-dev libev-dev \
&& rm -rf /var/lib/apt/lists/*

# Install Python3 packages
RUN set -x ; \
apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends python3 python3-dbfread python3-dev python3-pip python3-setuptools python3-wheel python3-markdown python3-mock python3-phonenumbers python3-websocket python3-cffi libpq-dev \
&& rm -rf /var/lib/apt/lists/*

# Install wkhtml
RUN curl -sSL https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6-1/wkhtmltox_0.12.6-1.focal_amd64.deb -o /tmp/wkhtmltox_0.12.6-1.focal_amd64.deb \
&& curl -sSL http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb -o /tmp/libssl1.1_1.1.0g-2ubuntu4_amd64.deb \
&& apt-get update \
&& dpkg -i /tmp/libssl1.1_1.1.0g-2ubuntu4_amd64.deb \
&& apt install -y -f --no-install-recommends /tmp/wkhtmltox_0.12.6-1.focal_amd64.deb \
&& rm /tmp/libssl1.1_1.1.0g-2ubuntu4_amd64.deb /tmp/wkhtmltox_0.12.6-1.focal_amd64.deb

# Install Odoo:Depends
ADD https://raw.githubusercontent.com/brendangregg/FlameGraph/master/flamegraph.pl /usr/local/bin/flamegraph.pl
RUN chmod +rx /usr/local/bin/flamegraph.pl
ADD https://raw.githubusercontent.com/Viindoo/odoo/17.0/debian/control /tmp/control.txt
RUN apt-get update \
&& sed -n '/^Depends:/,/^[A-Z]/p' /tmp/control.txt \
| awk '/^ [a-z]/ { gsub(/,/,"") ; print $1 }' | sort -u \
| egrep -v 'postgresql-client' \
| sed 's/python-imaging/python-pil/'| sed 's/python-pypdf/python-pypdf2/' | sed 's/python3-lxml-html-clean/python3-lxml/' \
| DEBIAN_FRONTEND=noninteractive xargs apt-get install -y -qq \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

RUN python3 -m pip install --no-cache-dir setuptools wheel && \
python3 -m pip install coverage==7.4.4 flamegraph

RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y postgresql-client-14 \
&& rm -rf /var/lib/apt/lists/*

# Install Google Chrome
#RUN curl -sSL https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -o /tmp/chrome.deb \
# && apt-get update \
# && apt-get -y install --no-install-recommends /tmp/chrome.deb \
# && rm /tmp/chrome.deb

# Install phantomjs
RUN curl -sSL https://nightly.odoo.com/resources/phantomjs.tar.bz2 -o /tmp/phantomjs.tar.bz2 \
&& tar xvfO /tmp/phantomjs.tar.bz2 phantomjs-2.1.1-linux-x86_64/bin/phantomjs > /usr/local/bin/phantomjs \
&& chmod +x /usr/local/bin/phantomjs \
&& rm -f /tmp/phantomjs.tar.bz2

ADD https://raw.githubusercontent.com/Viindoo/odoo/17.0/requirements.txt /root/requirements.txt
RUN python3 -m pip install --no-cache-dir wheel setuptools && \
python3 -m pip install --upgrade --no-cache-dir -r /root/requirements.txt && \
python3 -m pip install --no-cache-dir ebaysdk==2.1.5 pdf417gen==0.7.1

RUN python3 -m pip install --no-cache-dir requests pyOpenSSL

# Install debian packages
RUN set -x ; \
apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends openssl iputils-ping openssh-client chromium-browser \
&& rm -rf /var/lib/apt/lists/*

RUN python3 -m pip install --no-cache-dir --upgrade websocket-client==1.2.3 flake8==4.0.1
RUN python3 -m pip uninstall pylint pylint-odoo isort Pygments -y
RUN python3 -m pip install --no-cache-dir --upgrade pylint-odoo==9.0.5
RUN python3 -m pip install --no-cache-dir --upgrade Pygments==2.14.0 --no-deps
RUN python3 -m pip install --no-cache-dir --upgrade odoo_test_helper

# Install nodejs
RUN curl -fsSLO --compressed "https://nodejs.org/dist/v18.20.0/node-v18.20.0-linux-x64.tar.xz" \
&& tar -xJf "node-v18.20.0-linux-x64.tar.xz" -C /usr/local --strip-components=1 --no-same-owner \
&& rm "node-v18.20.0-linux-x64.tar.xz" \
&& ln -s /usr/local/bin/node /usr/local/bin/nodejs
#RUN npm install -g rtlcss es-check eslint@8
RUN python3 -m pip install --no-cache-dir --upgrade setuptools==61 # để tương thích với python-pkcs11-0.7.0

# Install cloc package
RUN set -x ; \
apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends cloc \
&& rm -rf /var/lib/apt/lists/*

RUN npm install -g rtlcss@3.4.0 es-check@6.0.0 eslint@8.57.1 prettier@2.7.1 eslint-config-prettier@8.5.0 eslint-plugin-prettier@4.2.1 --save-dev
11/02/2025 12:35:33 WARNING
Subbuild # 349892: py.warnings: /home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py:266: FutureWarning: You are using a Python version (3.10.12) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date.
File "/data/build/rb-8060988-218230/odoo-bin", line 8, in <module>
odoo.cli.main()
File "/data/build/rb-8060988-218230/odoo/cli/command.py", line 67, in main
o.run(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 186, in run
main(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 179, in main
rc = odoo.service.server.start(preload=preload, stop=stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1474, in start
rc = server.run(preload, stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 640, in run
rc = preload_registries(preload)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1374, in preload_registries
registry = Registry.new(dbname, update_module=update_module)
File "<decorator-gen-16>", line 2, in new
File "/data/build/rb-8060988-218230/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/data/build/rb-8060988-218230/odoo/modules/registry.py", line 110, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 485, in load_modules
processed_modules += load_marked_modules(env, graph,
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 366, in load_marked_modules
loaded, processed = load_module_graph(
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 187, in load_module_graph
load_openerp_module(package.name)
File "/data/build/rb-8060988-218230/odoo/modules/module.py", line 395, in load_openerp_module
__import__(qualname)
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/__init__.py", line 1, in <module>
from . import model
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/__init__.py", line 2, in <module>
from . import google_translate_api
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/google_translate_api.py", line 17, in <module>
from google.api_core.exceptions import GoogleAPICallError, NotFound # noqa: E402
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/__init__.py", line 39, in <module>
check_python_version(package="google.api_core")
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py", line 266, in check_python_version
warnings.warn(message, FutureWarning)

11/02/2025 11:30:28 WARNING
Subbuild # 349893: py.warnings: /home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py:266: FutureWarning: You are using a Python version (3.10.12) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date.
File "/data/build/rb-8060988-218230/odoo-bin", line 8, in <module>
odoo.cli.main()
File "/data/build/rb-8060988-218230/odoo/cli/command.py", line 67, in main
o.run(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 186, in run
main(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 179, in main
rc = odoo.service.server.start(preload=preload, stop=stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1474, in start
rc = server.run(preload, stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 640, in run
rc = preload_registries(preload)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1374, in preload_registries
registry = Registry.new(dbname, update_module=update_module)
File "<decorator-gen-16>", line 2, in new
File "/data/build/rb-8060988-218230/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/data/build/rb-8060988-218230/odoo/modules/registry.py", line 110, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 485, in load_modules
processed_modules += load_marked_modules(env, graph,
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 366, in load_marked_modules
loaded, processed = load_module_graph(
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 187, in load_module_graph
load_openerp_module(package.name)
File "/data/build/rb-8060988-218230/odoo/modules/module.py", line 395, in load_openerp_module
__import__(qualname)
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/__init__.py", line 1, in <module>
from . import model
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/__init__.py", line 2, in <module>
from . import google_translate_api
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/google_translate_api.py", line 17, in <module>
from google.api_core.exceptions import GoogleAPICallError, NotFound # noqa: E402
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/__init__.py", line 39, in <module>
check_python_version(package="google.api_core")
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py", line 266, in check_python_version
warnings.warn(message, FutureWarning)

11/02/2025 12:30:40 WARNING
Subbuild # 349894: py.warnings: /home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py:266: FutureWarning: You are using a Python version (3.10.12) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date.
File "/data/build/rb-8060988-218230/odoo-bin", line 8, in <module>
odoo.cli.main()
File "/data/build/rb-8060988-218230/odoo/cli/command.py", line 67, in main
o.run(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 186, in run
main(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 179, in main
rc = odoo.service.server.start(preload=preload, stop=stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1474, in start
rc = server.run(preload, stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 640, in run
rc = preload_registries(preload)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1374, in preload_registries
registry = Registry.new(dbname, update_module=update_module)
File "<decorator-gen-16>", line 2, in new
File "/data/build/rb-8060988-218230/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/data/build/rb-8060988-218230/odoo/modules/registry.py", line 110, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 481, in load_modules
processed_modules += load_marked_modules(env, graph,
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 366, in load_marked_modules
loaded, processed = load_module_graph(
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 187, in load_module_graph
load_openerp_module(package.name)
File "/data/build/rb-8060988-218230/odoo/modules/module.py", line 395, in load_openerp_module
__import__(qualname)
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/__init__.py", line 1, in <module>
from . import model
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/__init__.py", line 2, in <module>
from . import google_translate_api
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/google_translate_api.py", line 17, in <module>
from google.api_core.exceptions import GoogleAPICallError, NotFound # noqa: E402
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/__init__.py", line 39, in <module>
check_python_version(package="google.api_core")
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py", line 266, in check_python_version
warnings.warn(message, FutureWarning)

11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.account.tests.test_tour.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.account.tests.test_tour.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.auth_totp.tests.test_totp.TestTOTP: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.auth_totp.tests.test_totp.TestTOTP: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.auth_totp.tests.test_totp.TestTOTP: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.auth_totp_mail.tests.test_totp.TestTOTPInvite: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.auth_totp_portal.tests.test_tour.TestTOTPortal: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.base.tests.test_http_case.TestChromeBrowser: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.base.tests.test_http_case.TestChromeBrowserOddDimensions: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.base.tests.test_ir_model.TestIrModelFieldsTranslation: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.base_automation.tests.test_mail_composer.TestMailFullComposer: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.calendar.tests.test_calendar.TestCalendarTours: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.calendar.tests.test_calendar.TestCalendarTours: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.calendar.tests.test_calendar.TestCalendarTours: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.calendar.tests.test_calendar.TestCalendarTours: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.contacts.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.crm.tests.test_crm_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.crm.tests.test_crm_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.crm.tests.test_crm_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.crm.tests.test_crm_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.crm.tests.test_sales_team_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.event_sale.tests.test_event_sale_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr.tests.test_ui.TestEmployeeUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_expense.tests.test_expenses_access_rights.TestExpensesAccessRights: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_expense.tests.test_expenses_tour.TestExpensesTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_expense.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_expense.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_holidays.tests.test_holidays_calendar.TestHolidaysCalendar: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_holidays.tests.test_hr_holidays_tour.TestHrHolidaysTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_holidays.tests.test_hr_holidays_tour.TestHrHolidaysTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_holidays.tests.test_hr_holidays_tour.TestHrHolidaysTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349894: odoo.addons.hr_skills.tests.test_ui.SkillsTestUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: py.warnings: /home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py:266: FutureWarning: You are using a Python version (3.10.12) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date.
File "/data/build/rb-8060988-218230/odoo-bin", line 8, in <module>
odoo.cli.main()
File "/data/build/rb-8060988-218230/odoo/cli/command.py", line 67, in main
o.run(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 186, in run
main(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 179, in main
rc = odoo.service.server.start(preload=preload, stop=stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1474, in start
rc = server.run(preload, stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 640, in run
rc = preload_registries(preload)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1374, in preload_registries
registry = Registry.new(dbname, update_module=update_module)
File "<decorator-gen-16>", line 2, in new
File "/data/build/rb-8060988-218230/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/data/build/rb-8060988-218230/odoo/modules/registry.py", line 110, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 481, in load_modules
processed_modules += load_marked_modules(env, graph,
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 366, in load_marked_modules
loaded, processed = load_module_graph(
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 187, in load_module_graph
load_openerp_module(package.name)
File "/data/build/rb-8060988-218230/odoo/modules/module.py", line 395, in load_openerp_module
__import__(qualname)
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/__init__.py", line 1, in <module>
from . import model
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/__init__.py", line 2, in <module>
from . import google_translate_api
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/google_translate_api.py", line 17, in <module>
from google.api_core.exceptions import GoogleAPICallError, NotFound # noqa: E402
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/__init__.py", line 39, in <module>
check_python_version(package="google.api_core")
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py", line 266, in check_python_version
warnings.warn(message, FutureWarning)

11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.im_livechat.tests.test_chatbot_form_ui.TestLivechatChatbotFormUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.im_livechat.tests.test_chatbot_form_ui.TestLivechatChatbotFormUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.im_livechat.tests.test_im_livechat_support_page.TestImLivechatSupportPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.im_livechat.tests.test_js.ExternalTestSuite: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.im_livechat.tests.test_session_history.TestImLivechatSessionHistory: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.lunch.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_discuss_channel_as_guest.TestMailPublicPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_discuss_channel_as_guest.TestMailPublicPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_discuss_channel_as_guest.TestMailPublicPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_discuss_channel_as_guest.TestMailPublicPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_discuss_channel_as_guest.TestMailPublicPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_discuss_channel_as_guest.TestMailPublicPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_discuss_channel_as_guest.TestMailPublicPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_discuss_channel_as_guest.TestMailPublicPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_load_messages.TestLoadMessages: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.test_mail_activity.TestMailActivityChatter: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.test_mail_activity.TestMailActivityChatter: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.test_mail_composer.TestMailComposerUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.test_mail_template.TestMailTemplateUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.test_res_users.TestUserTours: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mail.tests.discuss.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.maintenance.tests.test_calendar_with_recurrence.TestCalendarWithRecurrence: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.maintenance.tests.test_calendar_with_recurrence.TestCalendarWithRecurrence: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_controllers.TestMailingControllers: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_controllers.TestMailingControllers: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_controllers.TestMailingControllers: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_controllers.TestMailingControllers: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_controllers.TestMailingControllers: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_controllers.TestMailingControllers: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_ui.TestMailingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_ui.TestMailingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_ui.TestMailingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_ui.TestMailingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_ui.TestMailingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_ui.TestMailingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing.tests.test_mailing_ui.TestMailingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mass_mailing_sms.tests.test_mailing_ui.TestMailingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mrp.tests.test_manual_consumption.TestTourManualConsumption: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mrp.tests.test_manual_consumption.TestTourManualConsumption: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mrp.tests.test_order.TestMrpSynchronization: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.mrp_subcontracting.tests.test_subcontracting_portal_ui.TestSubcontractingPortalUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.MobileTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_js.WebSuite: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.point_of_sale.tests.test_point_of_sale_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.portal.tests.test_tours.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.portal.tests.test_tours.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.pos_hr.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.pos_hr.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:20:16 WARNING
Subbuild # 349895: odoo.addons.pos_hr.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: py.warnings: /home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py:266: FutureWarning: You are using a Python version (3.10.12) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date.
File "/data/build/rb-8060988-218230/odoo-bin", line 8, in <module>
odoo.cli.main()
File "/data/build/rb-8060988-218230/odoo/cli/command.py", line 67, in main
o.run(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 186, in run
main(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 179, in main
rc = odoo.service.server.start(preload=preload, stop=stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1474, in start
rc = server.run(preload, stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 640, in run
rc = preload_registries(preload)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1374, in preload_registries
registry = Registry.new(dbname, update_module=update_module)
File "<decorator-gen-16>", line 2, in new
File "/data/build/rb-8060988-218230/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/data/build/rb-8060988-218230/odoo/modules/registry.py", line 110, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 481, in load_modules
processed_modules += load_marked_modules(env, graph,
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 366, in load_marked_modules
loaded, processed = load_module_graph(
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 187, in load_module_graph
load_openerp_module(package.name)
File "/data/build/rb-8060988-218230/odoo/modules/module.py", line 395, in load_openerp_module
__import__(qualname)
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/__init__.py", line 1, in <module>
from . import model
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/__init__.py", line 2, in <module>
from . import google_translate_api
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/google_translate_api.py", line 17, in <module>
from google.api_core.exceptions import GoogleAPICallError, NotFound # noqa: E402
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/__init__.py", line 39, in <module>
check_python_version(package="google.api_core")
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py", line 266, in check_python_version
warnings.warn(message, FutureWarning)

11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_loyalty.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_mrp.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_online_payment.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_online_payment.tests.test_frontend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant.tests.test_frontend.TestFrontend: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_restaurant_loyalty.tests.test_pos_restaurant_loyalty.TestPoSRestaurantLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale.tests.test_pos_sale_flow.TestPoSSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale_loyalty.tests.test_pos_sale_loyalty.TestPoSSaleLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_sale_loyalty.tests.test_pos_sale_loyalty.TestPoSSaleLoyalty: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_attribute.TestSelfOrderAttribute: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_combo.TestSelfOrderCombo: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_combo.TestSelfOrderCombo: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_common.TestSelfOrderCommon: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_common.TestSelfOrderCommon: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_common.TestSelfOrderCommon: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_kiosk.TestSelfOrderKiosk: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_kiosk.TestSelfOrderKiosk: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_mobile.TestSelfOrderMobile: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_pos.TestSelfOrderPos: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_self_order.tests.test_self_order_sequence.TestSelfOrderSequence: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.pos_viva_wallet.tests.test_frontend.TestVivaWalletHttpCommon: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.project.tests.test_burndown_chart.TestBurndownChartTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.project.tests.test_personal_stages.TestPersonalStageTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.project.tests.test_project_sharing_ui.TestProjectSharingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.project.tests.test_project_sharing_ui.TestProjectSharingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.project.tests.test_project_sharing_ui.TestProjectSharingUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.project.tests.test_project_tags_filter.TestProjectTags: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.project.tests.test_project_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.project.tests.test_project_update_ui.TestProjectUpdateUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.purchase_product_matrix.tests.test_purchase_matrix.TestPurchaseMatrixUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.sale.tests.test_controllers.TestSaleSignature: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.sale.tests.test_sale_order_product_catalog.TestSaleOrderProductCatalog: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.sale_management.tests.test_sale_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.sale_management.tests.test_sale_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.sale_management.tests.test_sale_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:30:40 WARNING
Subbuild # 349896: odoo.addons.sale_management.tests.test_sale_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: py.warnings: /home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py:266: FutureWarning: You are using a Python version (3.10.12) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date.
File "/data/build/rb-8060988-218230/odoo-bin", line 8, in <module>
odoo.cli.main()
File "/data/build/rb-8060988-218230/odoo/cli/command.py", line 67, in main
o.run(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 186, in run
main(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 179, in main
rc = odoo.service.server.start(preload=preload, stop=stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1474, in start
rc = server.run(preload, stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 640, in run
rc = preload_registries(preload)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1374, in preload_registries
registry = Registry.new(dbname, update_module=update_module)
File "<decorator-gen-16>", line 2, in new
File "/data/build/rb-8060988-218230/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/data/build/rb-8060988-218230/odoo/modules/registry.py", line 110, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 481, in load_modules
processed_modules += load_marked_modules(env, graph,
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 366, in load_marked_modules
loaded, processed = load_module_graph(
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 187, in load_module_graph
load_openerp_module(package.name)
File "/data/build/rb-8060988-218230/odoo/modules/module.py", line 395, in load_openerp_module
__import__(qualname)
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/__init__.py", line 1, in <module>
from . import model
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/__init__.py", line 2, in <module>
from . import google_translate_api
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/google_translate_api.py", line 17, in <module>
from google.api_core.exceptions import GoogleAPICallError, NotFound # noqa: E402
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/__init__.py", line 39, in <module>
check_python_version(package="google.api_core")
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py", line 266, in check_python_version
warnings.warn(message, FutureWarning)

11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.sale_timesheet.tests.test_sale_timesheet_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.spreadsheet_dashboard.tests.test_share_dashboard_tour.TestDashboardShareTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock.tests.test_picking_tours.TestStockPickingTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock.tests.test_picking_tours.TestStockPickingTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock.tests.test_picking_tours.TestStockPickingTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock.tests.test_picking_tours.TestStockPickingTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock.tests.test_picking_tours.TestStockPickingTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock.tests.test_picking_tours.TestStockPickingTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock.tests.test_report_tours.TestStockReportTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock.tests.test_report_tours.TestStockReportTour: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.stock_picking_batch.tests.test_batch_picking.TestBatchPickingSynchronization: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_backend.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_certification.TestUiCertification: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_certification.TestUiCertification: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_feedback.TestUiFeedback: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_feedback.TestUiFeedback: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_feedback.TestUiFeedback: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_feedback.TestUiFeedback: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_feedback.TestUiFeedback: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_feedback.TestUiFeedback: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.survey.tests.test_survey_ui_feedback.TestUiFeedback: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_apikeys.tests.test_flow.TestAPIKeys: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_apikeys.tests.test_flow.TestAPIKeys: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_assetsbundle.tests.test_assetsbundle.TestAssetsBundleInBrowser: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_assetsbundle.tests.test_assetsbundle.TestAssetsBundleInBrowser: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_assetsbundle.tests.test_assetsbundle.TestErrorManagement: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_base_automation.tests.test_tour.BaseAutomationTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_event_full.tests.test_wevent_register.TestWEventRegister: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_http.tests.test_xss.TestXSS: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_http.tests.test_xss.TestXSS: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_http.tests.test_xss.TestXSS: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.viin_affiliate_website.controllers.website_sale.WebsiteSale.confirm_order is duplicating the existing routing configuration : {'auth': 'public', 'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.to_website_apps_store.controllers.mail.PortalChatter.portal_chatter_post is duplicating the existing routing configuration : {'auth': 'public', 'methods': ['POST'], 'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.to_website_docs_odoo.controllers.main.WebsiteDocs.category is duplicating the existing routing configuration : {'auth': 'public', 'methods': ['GET', 'POST'], 'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.to_website_docs_odoo.controllers.main.WebsiteDocs.docs is duplicating the existing routing configuration : {'auth': 'public', 'methods': ['GET', 'POST'], 'sitemap': True, 'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.to_website_docs_odoo.controllers.main.WebsiteDocs.document is duplicating the existing routing configuration : {'auth': 'public', 'methods': ['GET', 'POST'], 'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.to_website_docs_odoo.controllers.main.WebsiteDocs.search is duplicating the existing routing configuration : {'auth': 'public', 'methods': ['GET'], 'sitemap': False, 'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.to_website_docs_odoo.controllers.editor.WebsiteDocsEditor.create_document is duplicating the existing routing configuration : {'auth': 'user', 'methods': ['POST']}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.viin_project.controllers.main.DataSetProject.resequence is duplicating the existing routing configuration : {'auth': 'user'}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.to_website_docs.controllers.main.Website.publish is duplicating the existing routing configuration : {'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.to_signup_email_verification.controllers.main.VerifyEmail.web_auth_signup is duplicating the existing routing configuration : {'auth': 'public', 'sitemap': False, 'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_lint.tests.test_routes: The endpoint odoo.addons.viin_affiliate_website.controllers.link_tracker.WebsiteAffiliateLinkTracker.full_url_redirect is duplicating the existing routing configuration : {'auth': 'public', 'website': True}
11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_mail.tests.test_mail_activity.TestTours: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_main_flows.tests.test_flow.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_main_flows.tests.test_flow.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_main_flows.tests.test_flow.TestUiMobile: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_new_api.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_new_api.tests.test_ui.TestUiTranslation: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_event_sale_with_product_configurator.TestEventProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_configurator.TestProductConfiguratorUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_sale_product_configurators.tests.test_sale_product_matrix.TestSaleMatrixUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_custom_snippet.TestCustomSnippet: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_error.TestWebsiteError: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_image_upload_progress.TestImageUploadProgress: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_image_upload_progress.TestImageUploadProgress: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_media.TestMedia: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_media.TestMedia: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_page_manager.TestWebsitePageManager: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_reset_views.TestWebsiteResetViews: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_restricted_editor.TestRestrictedEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_restricted_editor.TestRestrictedEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_session.TestWebsiteSession: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_settings.TestWebsiteSettings: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_snippet_background_video.TestSnippetBackgroundVideo: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_systray.TestSystray: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_systray.TestSystray: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_systray.TestSystray: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_systray.TestSystray: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_systray.TestSystray: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_website_controller_page.TestWebsiteControllerPage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website.tests.test_website_field_sanitize.TestWebsiteFieldSanitize: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website_modules.tests.test_configurator.TestConfigurator: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:35:33 WARNING
Subbuild # 349897: odoo.addons.test_website_slides_full.tests.test_ui_wslides.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 12:45:02 WARNING
Subbuild # 349898: py.warnings: /home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py:266: FutureWarning: You are using a Python version (3.10.12) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date.
File "/data/build/rb-8060988-218230/odoo-bin", line 8, in <module>
odoo.cli.main()
File "/data/build/rb-8060988-218230/odoo/cli/command.py", line 67, in main
o.run(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 186, in run
main(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 179, in main
rc = odoo.service.server.start(preload=preload, stop=stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1474, in start
rc = server.run(preload, stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 640, in run
rc = preload_registries(preload)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1374, in preload_registries
registry = Registry.new(dbname, update_module=update_module)
File "<decorator-gen-16>", line 2, in new
File "/data/build/rb-8060988-218230/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/data/build/rb-8060988-218230/odoo/modules/registry.py", line 110, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 481, in load_modules
processed_modules += load_marked_modules(env, graph,
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 366, in load_marked_modules
loaded, processed = load_module_graph(
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 187, in load_module_graph
load_openerp_module(package.name)
File "/data/build/rb-8060988-218230/odoo/modules/module.py", line 395, in load_openerp_module
__import__(qualname)
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/__init__.py", line 1, in <module>
from . import model
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/__init__.py", line 2, in <module>
from . import google_translate_api
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/google_translate_api.py", line 17, in <module>
from google.api_core.exceptions import GoogleAPICallError, NotFound # noqa: E402
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/__init__.py", line 39, in <module>
check_python_version(package="google.api_core")
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py", line 266, in check_python_version
warnings.warn(message, FutureWarning)

11/02/2025 11:55:18 WARNING
Subbuild # 349899: py.warnings: /home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py:266: FutureWarning: You are using a Python version (3.10.12) which Google will stop supporting in new releases of google.api_core once it reaches its end of life (2026-10-04). Please upgrade to the latest Python version, or at least Python 3.11, to continue receiving updates for google.api_core past that date.
File "/data/build/rb-8060988-218230/odoo-bin", line 8, in <module>
odoo.cli.main()
File "/data/build/rb-8060988-218230/odoo/cli/command.py", line 67, in main
o.run(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 186, in run
main(args)
File "/data/build/rb-8060988-218230/odoo/cli/server.py", line 179, in main
rc = odoo.service.server.start(preload=preload, stop=stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1474, in start
rc = server.run(preload, stop)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 640, in run
rc = preload_registries(preload)
File "/data/build/rb-8060988-218230/odoo/service/server.py", line 1374, in preload_registries
registry = Registry.new(dbname, update_module=update_module)
File "<decorator-gen-16>", line 2, in new
File "/data/build/rb-8060988-218230/odoo/tools/func.py", line 87, in locked
return func(inst, *args, **kwargs)
File "/data/build/rb-8060988-218230/odoo/modules/registry.py", line 110, in new
odoo.modules.load_modules(registry, force_demo, status, update_module)
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 481, in load_modules
processed_modules += load_marked_modules(env, graph,
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 366, in load_marked_modules
loaded, processed = load_module_graph(
File "/data/build/rb-8060988-218230/odoo/modules/loading.py", line 187, in load_module_graph
load_openerp_module(package.name)
File "/data/build/rb-8060988-218230/odoo/modules/module.py", line 395, in load_openerp_module
__import__(qualname)
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/__init__.py", line 1, in <module>
from . import model
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/__init__.py", line 2, in <module>
from . import google_translate_api
File "/data/build/Viindoo-erponline-enterprise-17.0/viin_google_translate_api/model/google_translate_api.py", line 17, in <module>
from google.api_core.exceptions import GoogleAPICallError, NotFound # noqa: E402
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/__init__.py", line 39, in <module>
check_python_version(package="google.api_core")
File "/home/nvq1xbwiguuu/.local/lib/python3.10/site-packages/google/api_core/_python_version_support.py", line 266, in check_python_version
warnings.warn(message, FutureWarning)

11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.web.tests.test_click_everywhere.TestMenusAdminLight: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.web.tests.test_click_everywhere.TestMenusDemoLight: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.web.tests.test_js.MobileWebSuite: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.web.tests.test_js.WebSuite: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.web_editor.tests.test_odoo_editor.TestOdooEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_assets.TestWebAssets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_attachment.TestWebsiteAttachment: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_client_action.TestClientAction: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_client_action.TestClientAction: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_configurator.TestConfiguratorTranslation: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_custom_snippets.TestHttpCustomSnippet: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_grid_layout.TestWebsiteGridLayout: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_grid_layout.TestWebsiteGridLayout: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_page_manager.TestWebsitePageManager: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_skip_website_configurator.TestAutomaticEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUiHtmlEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUiHtmlEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUiHtmlEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUiHtmlEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUiTranslate: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUiTranslate: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUiTranslate: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_ui.TestUiTranslate: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_unsplash_beacon.TestUnsplashBeacon: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_form_editor.TestWebsiteFormEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_form_editor.TestWebsiteFormEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_form_editor.TestWebsiteFormEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_form_editor.TestWebsiteFormEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_form_editor.TestWebsiteFormEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_form_editor.TestWebsiteFormEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_form_editor.TestWebsiteFormEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_form_editor.TestWebsiteFormEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website.tests.test_website_reset_password.TestWebsiteResetPassword: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_blog.tests.test_ui.TestWebsiteBlogUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_blog.tests.test_ui.TestWebsiteBlogUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_blog.tests.test_ui.TestWebsiteBlogUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_blog.tests.test_ui.TestWebsiteBlogUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_crm.tests.test_website_crm.TestWebsiteCrm: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_crm.tests.test_website_crm.TestWebsiteCrm: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_crm_partner_assign.tests.test_partner_assign.TestPublish: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_crm_partner_assign.tests.test_partner_assign.TestPublish: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_crm_partner_assign.tests.test_partner_assign.TestPublish: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_crm_partner_assign.tests.test_partner_assign.TestPublish: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_crm_partner_assign.tests.test_partner_assign.TestPublish: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event.tests.test_website_event.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event.tests.test_website_event.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event.tests.test_website_event.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event_booth_exhibitor.tests.test_wevent_booth_exhibitor.TestWEventBoothExhibitorCommon: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event_booth_sale.tests.test_event_booth_sale.TestWebsiteEventBoothSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event_booth_sale.tests.test_event_booth_sale.TestWebsiteEventBoothSale: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event_sale.tests.test_frontend_buy_tickets.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event_sale.tests.test_frontend_buy_tickets.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event_sale.tests.test_frontend_buy_tickets.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_event_sale.tests.test_frontend_buy_tickets.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_forum.tests.test_forum_tours.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_forum.tests.test_forum_tours.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_hr_recruitment.tests.test_website_hr_recruitment.TestWebsiteHrRecruitmentForm: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_links.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_chatbot_ui.TestLivechatChatbotUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_chatbot_ui.TestLivechatChatbotUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_chatbot_ui.TestLivechatChatbotUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_chatbot_ui.TestLivechatChatbotUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_chatbot_ui.TestLivechatChatbotUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_lazy_frontend_bus.TestBusLazyFrontendBus: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_livechat_basic_flow.TestLivechatBasicFlowHttpCase: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_livechat_basic_flow.TestLivechatBasicFlowHttpCase: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_livechat_session_user_changes.TestLivechatSessionUserChanges: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_livechat_session_user_changes.TestLivechatSessionUserChanges: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_ui.TestLivechatUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_ui.TestLivechatUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_ui.TestLivechatUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_ui.TestLivechatUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_ui.TestLivechatUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_ui.TestLivechatUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_ui.TestLivechatUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_livechat.tests.test_ui.TestLivechatUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_mass_mailing.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_mass_mailing.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_payment.tests.test_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_profile.tests.test_website_profile.TestWebsiteProfile: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_delivery_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_delivery_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_sale_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_sale_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_sale_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_sale_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_sale_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_sale_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_sale_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_editor.TestWebsiteSaleEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_editor.TestWebsiteSaleEditor: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_add_to_cart_snippet.TestAddToCartSnippet: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_cart_notification.TestWebsiteSaleCartNotification: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_cart_recovery.TestWebsiteSaleCartRecovery: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_fiscal_position.TestWebsiteSaleFiscalPosition: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_image.TestRemoveWebsiteSaleImageNoVariant: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_image.TestRemoveWebsiteSaleImageVariants: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_image.TestWebsiteSaleImage: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_mail.TestWebsiteSaleMail: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_pricelist.TestWebsiteSaleSession: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_reorder_from_portal.TestWebsiteSaleReorderFromPortal: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_show_compare_list_price.WebsiteSaleShopPriceListCompareListPriceDispayTests: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale.tests.test_website_sale_snippets.TestSnippets: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_autocomplete.tests.test_ui.TestUI: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_comparison.tests.test_website_sale_comparison.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_loyalty.tests.test_shop_sale_coupon.TestWebsiteSaleCoupon: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_loyalty.tests.test_shop_sale_coupon.WebsiteSaleLoyaltyTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_loyalty.tests.test_shop_sale_coupon.WebsiteSaleLoyaltyTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_loyalty.tests.test_shop_sale_coupon.WebsiteSaleLoyaltyTestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_loyalty.tests.test_website_sale_loyalty_delivery.TestWebsiteSaleDelivery: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_loyalty.tests.test_website_sale_loyalty_delivery.TestWebsiteSaleDelivery: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_loyalty.tests.test_website_sale_loyalty_delivery.TestWebsiteSaleDelivery: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_mrp.tests.test_website_sale_product_availability.TestWebsiteSaleMrpAvailability: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_picking.tests.test_ui.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_product_configurator.tests.test_customize.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_product_configurator.tests.test_website_sale_configurator.TestWebsiteSaleProductConfigurator: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_product_configurator.tests.test_website_sale_configurator.TestWebsiteSaleProductConfigurator: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_slides.tests.test_ui_website_sale_slides.TestUiWebsiteSaleSlides: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_slides.tests.test_ui_website_sale_slides.TestUiWebsiteSaleSlides: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_stock.tests.test_website_sale_stock_multilang.TestWebsiteSaleStockMultilang: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_stock.tests.test_website_sale_stock_reorder_from_portal.TestWebsiteSaleStockReorderFromPortal: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_stock.tests.test_website_sale_stock_stock_message.TestWebsiteSaleStockProductConfigurator: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_stock.tests.test_website_sale_stock_stock_message.TestWebsiteSaleStockProductConfigurator: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_stock.tests.test_website_sale_stock_stock_notification.TestStockNotificationProduct: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_stock_wishlist.tests.test_website_sale_stock_wishlist_stock_notification.TestStockNotificationWishlist: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_wishlist.tests.test_wishlist_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_sale_wishlist.tests.test_wishlist_process.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUi: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUiMemberInvited: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUiMemberInvited: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUiMemberInvited: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUiMemberInvited: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUiMemberInvited: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUiMemberInvited: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium


11/02/2025 11:55:18 WARNING
Subbuild # 349899: odoo.addons.website_slides.tests.test_ui_wslides.TestUiPublisher: Chrome headless failed to start:

Command '/usr/bin/chromium-browser' requires the chromium snap to be installed.
Please install it with:

snap install chromium