• Bug#1098609: python-renault-api: FTBFS: E assert 2 == 0

    From Santiago Vila@21:1/5 to All on Sat Feb 22 00:40:04 2025
    Package: src:python-renault-api
    Version: 0.2.9-1
    Severity: serious
    Tags: ftbfs trixie sid

    Dear maintainer:

    During a rebuild of all packages in unstable, your package failed to build:

    --------------------------------------------------------------------------------
    [...]
    debian/rules clean
    dh clean --buildsystem=pybuild
    dh_auto_clean -O--buildsystem=pybuild
    dh_autoreconf_clean -O--buildsystem=pybuild
    dh_clean -O--buildsystem=pybuild
    debian/rules binary
    dh binary --buildsystem=pybuild
    dh_update_autotools_config -O--buildsystem=pybuild
    dh_autoreconf -O--buildsystem=pybuild
    dh_auto_configure -O--buildsystem=pybuild
    dh_auto_build -O--buildsystem=pybuild
    I: pybuild plugin_pyproject:129: Building wheel for python3.12 with "build" module
    I: pybuild base:311: python3.12 -m build --skip-dependency-check --no-isolation --wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12
    * Building wheel...
    Successfully built renault_api-0.2.9-py3-none-any.whl
    I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.12 with "installer" module
    I: pybuild plugin_pyproject:129: Building wheel for python3.13 with "build" module
    I: pybuild base:311: python3.13 -m build --skip-dependency-check --no-isolation --wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13
    * Building wheel...
    Successfully built renault_api-0.2.9-py3-none-any.whl
    I: pybuild plugin_pyproject:144: Unpacking wheel built for python3.13 with "installer" module
    dh_auto_test -O--buildsystem=pybuild
    I: pybuild base:311: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build; python3.12 -m pytest tests
    /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:207: PytestDeprecationWarning: The configuration option "asyncio_default_fixture_loop_scope" is unset.
    The event loop scope for asynchronous fixtures will default to the fixture caching scope. Future versions of pytest-asyncio will default the loop scope for asynchronous fixtures to function scope. Set the default fixture loop scope explicitly in order to
    avoid unexpected behavior in the future. Valid fixture loop scopes are: "function", "class", "module", "package", "session"

    warnings.warn(PytestDeprecationWarning(_DEFAULT_FIXTURE_LOOP_SCOPE_UNSET)) ============================= test session starts ==============================
    platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0
    rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build
    configfile: pyproject.toml
    plugins: asyncio-0.25.1, typeguard-4.4.1
    asyncio: mode=Mode.STRICT, asyncio_default_fixture_loop_scope=None
    collected 291 items

    tests/cli/test_account.py ... [ 1%] tests/cli/test_client.py .... [ 2%] tests/cli/test_main.py F... [ 3%] tests/cli/test_session.py ..... [ 5%] tests/cli/test_vehicle.py .................... [ 12%] tests/cli/test_vehicle_charge.py ............... [ 17%] tests/cli/test_vehicle_hvac.py ...... [ 19%] tests/gigya/test_gigya.py .... [ 20%] tests/gigya/test_gigya_error.py ...... [ 23%] tests/gigya/test_gigya_models.py ...... [ 25%] tests/kamereon/test_kamereon.py ..... [ 26%] tests/kamereon/test_kamereon_error.py ..................... [ 34%] tests/kamereon/test_kamereon_person.py . [ 34%] tests/kamereon/test_kamereon_vehicle_action.py .......... [ 37%] tests/kamereon/test_kamereon_vehicle_contract.py .... [ 39%] tests/kamereon/test_kamereon_vehicle_data.py ........................... [ 48%] ................... [ 54%] tests/kamereon/test_kamereon_vehicle_details.py .. [ 55%] tests/kamereon/test_kamereon_vehicle_gateway.py ..... [ 57%] tests/kamereon/test_kamereon_vehicles.py ........... [ 61%] tests/test_api_keys.py ..............................sssssssssssssssssss [ 78%] sssssssssss. [ 82%] tests/test_credential.py .. [ 82%] tests/test_credential_store.py ....... [ 85%] tests/test_renault_account.py .... [ 86%] tests/test_renault_client.py .... [ 87%] tests/test_renault_session.py ........ [ 90%] tests/test_renault_vehicle.py ........................... [100%]

    =================================== FAILURES ===================================
    ______________________________ test_main_succeeds ______________________________

    cli_runner = <click.testing.CliRunner object at 0x7f0cd45ebcb0>

    def test_main_succeeds(cli_runner: CliRunner) -> None:
    """It exits with a status code of zero."""
    result = cli_runner.invoke(__main__.main)
    assert result.exit_code == 0, result.exception
    E AssertionError: SystemExit(2)
    E assert 2 == 0
    E + where 2 = <Result SystemExit(2)>.exit_code

    tests/cli/test_main.py:46: AssertionError
    =============================== warnings summary ===============================
    tests/cli/test_account.py: 3 warnings
    tests/cli/test_client.py: 2 warnings
    tests/cli/test_vehicle.py: 20 warnings
    tests/cli/test_vehicle_charge.py: 15 warnings
    tests/cli/test_vehicle_hvac.py: 6 warnings
    tests/gigya/test_gigya.py: 1 warning
    tests/kamereon/test_kamereon.py: 5 warnings
    tests/test_credential.py: 1 warning
    tests/test_credential_store.py: 3 warnings
    tests/test_renault_account.py: 5 warnings
    tests/test_renault_client.py: 5 warnings
    tests/test_renault_session.py: 2 warnings
    tests/test_renault_vehicle.py: 28 warnings
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/fixtures.py:41: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.
    now(datetime.UTC).
    payload={"exp": datetime.datetime.utcnow() + timedelta},

    tests/cli/test_account.py::test_list_vehicles_prompt tests/cli/test_client.py::test_login_prompt tests/cli/test_client.py::test_list_accounts_prompt tests/cli/test_vehicle.py::test_vehicle_status_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/renault_api/cli/renault_client.py:34: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_account.py::test_list_vehicles_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/cli/test_account.py:55: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_client.py::test_login_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/cli/test_client.py:37: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_client.py::test_list_accounts_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/cli/test_client.py:76: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_vehicle.py::test_vehicle_status_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/cli/test_vehicle.py:268: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/kamereon/test_kamereon.py::test_set_vehicle_action
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/kamereon/test_kamereon.py:107: DeprecationWarning: You should use the full endpoint: actions/hvac-start.
    assert await kamereon.set_vehicle_action(

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_1
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/kamereon/test_kamereon_vehicle_contract.py:44: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "battery-status")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/kamereon/test_kamereon_vehicle_contract.py:59: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "battery-status")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/kamereon/test_kamereon_vehicle_contract.py:60: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "charge-mode")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/kamereon/test_kamereon_vehicle_contract.py:61: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "charging-settings")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/kamereon/test_kamereon_vehicle_contract.py:62: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "hvac-history")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/kamereon/test_kamereon_vehicle_contract.py:63: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "hvac-sessions")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/kamereon/test_kamereon_vehicle_contract.py:64: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "hvac-status")

    tests/test_renault_vehicle.py::test_has_contract_for_endpoint_1
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/test_renault_vehicle.py:99: DeprecationWarning: This method is deprecated.
    assert await vehicle.has_contract_for_endpoint("battery-status")

    tests/test_renault_vehicle.py::test_has_contract_for_endpoint_1
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/test_renault_vehicle.py:100: DeprecationWarning: This method is deprecated.
    assert await vehicle.has_contract_for_endpoint("hvac-status")

    tests/test_renault_vehicle.py::test_has_contract_for_endpoint_1
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/test_renault_vehicle.py:101: DeprecationWarning: This method is deprecated.
    assert await vehicle.has_contract_for_endpoint("charge-mode")

    tests/test_renault_vehicle.py::test_has_contract_for_endpoint_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build/tests/test_renault_vehicle.py:110: DeprecationWarning: This method is deprecated.
    assert await vehicle.has_contract_for_endpoint("battery-status")

    -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html =========================== short test summary info ============================
    FAILED tests/cli/test_main.py::test_main_succeeds - AssertionError: SystemExi...
    =========== 1 failed, 260 passed, 30 skipped, 116 warnings in 1.83s ============
    E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12/build; python3.12 -m pytest tests
    I: pybuild base:311: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build; python3.13 -m pytest tests
    /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:207: PytestDeprecationWarning: The configuration option "asyncio_default_fixture_loop_scope" is unset.
    The event loop scope for asynchronous fixtures will default to the fixture caching scope. Future versions of pytest-asyncio will default the loop scope for asynchronous fixtures to function scope. Set the default fixture loop scope explicitly in order to
    avoid unexpected behavior in the future. Valid fixture loop scopes are: "function", "class", "module", "package", "session"

    warnings.warn(PytestDeprecationWarning(_DEFAULT_FIXTURE_LOOP_SCOPE_UNSET)) ============================= test session starts ==============================
    platform linux -- Python 3.13.2, pytest-8.3.4, pluggy-1.5.0
    rootdir: /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build
    configfile: pyproject.toml
    plugins: asyncio-0.25.1, typeguard-4.4.1
    asyncio: mode=Mode.STRICT, asyncio_default_fixture_loop_scope=None
    collected 291 items

    tests/cli/test_account.py ... [ 1%] tests/cli/test_client.py .... [ 2%] tests/cli/test_main.py F... [ 3%] tests/cli/test_session.py ..... [ 5%] tests/cli/test_vehicle.py .................... [ 12%] tests/cli/test_vehicle_charge.py ............... [ 17%] tests/cli/test_vehicle_hvac.py ...... [ 19%] tests/gigya/test_gigya.py .... [ 20%] tests/gigya/test_gigya_error.py ...... [ 23%] tests/gigya/test_gigya_models.py ...... [ 25%] tests/kamereon/test_kamereon.py ..... [ 26%] tests/kamereon/test_kamereon_error.py ..................... [ 34%] tests/kamereon/test_kamereon_person.py . [ 34%] tests/kamereon/test_kamereon_vehicle_action.py .......... [ 37%] tests/kamereon/test_kamereon_vehicle_contract.py .... [ 39%] tests/kamereon/test_kamereon_vehicle_data.py ........................... [ 48%] ................... [ 54%] tests/kamereon/test_kamereon_vehicle_details.py .. [ 55%] tests/kamereon/test_kamereon_vehicle_gateway.py ..... [ 57%] tests/kamereon/test_kamereon_vehicles.py ........... [ 61%] tests/test_api_keys.py ..............................sssssssssssssssssss [ 78%] sssssssssss. [ 82%] tests/test_credential.py .. [ 82%] tests/test_credential_store.py ....... [ 85%] tests/test_renault_account.py .... [ 86%] tests/test_renault_client.py .... [ 87%] tests/test_renault_session.py ........ [ 90%] tests/test_renault_vehicle.py ........................... [100%]

    =================================== FAILURES ===================================
    ______________________________ test_main_succeeds ______________________________

    cli_runner = <click.testing.CliRunner object at 0x7f847f747570>

    def test_main_succeeds(cli_runner: CliRunner) -> None:
    """It exits with a status code of zero."""
    result = cli_runner.invoke(__main__.main)
    assert result.exit_code == 0, result.exception
    E AssertionError: SystemExit(2)
    E assert 2 == 0
    E + where 2 = <Result SystemExit(2)>.exit_code

    tests/cli/test_main.py:46: AssertionError
    =============================== warnings summary ===============================
    tests/cli/test_account.py: 3 warnings
    tests/cli/test_client.py: 2 warnings
    tests/cli/test_vehicle.py: 20 warnings
    tests/cli/test_vehicle_charge.py: 15 warnings
    tests/cli/test_vehicle_hvac.py: 6 warnings
    tests/gigya/test_gigya.py: 1 warning
    tests/kamereon/test_kamereon.py: 5 warnings
    tests/test_credential.py: 1 warning
    tests/test_credential_store.py: 3 warnings
    tests/test_renault_account.py: 5 warnings
    tests/test_renault_client.py: 5 warnings
    tests/test_renault_session.py: 2 warnings
    tests/test_renault_vehicle.py: 28 warnings
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/fixtures.py:41: DeprecationWarning: datetime.datetime.utcnow() is deprecated and scheduled for removal in a future version. Use timezone-aware objects to represent datetimes in UTC: datetime.datetime.
    now(datetime.UTC).
    payload={"exp": datetime.datetime.utcnow() + timedelta},

    tests/cli/test_account.py::test_list_vehicles_prompt tests/cli/test_client.py::test_login_prompt tests/cli/test_client.py::test_list_accounts_prompt tests/cli/test_vehicle.py::test_vehicle_status_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/renault_api/cli/renault_client.py:34: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_account.py::test_list_vehicles_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/cli/test_account.py:55: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_client.py::test_login_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/cli/test_client.py:37: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_client.py::test_list_accounts_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/cli/test_client.py:76: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_vehicle.py::test_vehicle_status_prompt
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/cli/test_vehicle.py:268: DeprecationWarning: 'locale.getdefaultlocale' is deprecated and slated for removal in Python 3.15. Use setlocale(), getencoding() and getlocale() instead.
    default_locale = getdefaultlocale()[0]

    tests/cli/test_vehicle_charge.py: 12 warnings
    tests/cli/test_vehicle_hvac.py: 7 warnings
    /usr/lib/python3/dist-packages/dateparser/utils/strptime.py:94: DeprecationWarning: Parsing dates involving a day of month without a year specified is ambiguious
    and fails to parse leap day. The default behavior will change in Python 3.15
    to either always raise an exception or to use a different default year (TBD).
    To avoid trouble, add a specific year to the input & format.
    See https://github.com/python/cpython/issues/70647.
    obj = datetime(*__strptime(date_string, format)[:-3])

    tests/kamereon/test_kamereon.py::test_set_vehicle_action
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/kamereon/test_kamereon.py:107: DeprecationWarning: You should use the full endpoint: actions/hvac-start.
    assert await kamereon.set_vehicle_action(

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_1
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/kamereon/test_kamereon_vehicle_contract.py:44: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "battery-status")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/kamereon/test_kamereon_vehicle_contract.py:59: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "battery-status")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/kamereon/test_kamereon_vehicle_contract.py:60: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "charge-mode")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/kamereon/test_kamereon_vehicle_contract.py:61: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "charging-settings")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/kamereon/test_kamereon_vehicle_contract.py:62: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "hvac-history")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/kamereon/test_kamereon_vehicle_contract.py:63: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "hvac-sessions")

    tests/kamereon/test_kamereon_vehicle_contract.py::test_has_required_contract_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/kamereon/test_kamereon_vehicle_contract.py:64: DeprecationWarning: This method is deprecated.
    assert has_required_contracts(response.contractList, "hvac-status")

    tests/test_renault_vehicle.py::test_has_contract_for_endpoint_1
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/test_renault_vehicle.py:99: DeprecationWarning: This method is deprecated.
    assert await vehicle.has_contract_for_endpoint("battery-status")

    tests/test_renault_vehicle.py::test_has_contract_for_endpoint_1
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/test_renault_vehicle.py:100: DeprecationWarning: This method is deprecated.
    assert await vehicle.has_contract_for_endpoint("hvac-status")

    tests/test_renault_vehicle.py::test_has_contract_for_endpoint_1
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/test_renault_vehicle.py:101: DeprecationWarning: This method is deprecated.
    assert await vehicle.has_contract_for_endpoint("charge-mode")

    tests/test_renault_vehicle.py::test_has_contract_for_endpoint_2
    /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/test_renault_vehicle.py:110: DeprecationWarning: This method is deprecated.
    assert await vehicle.has_contract_for_endpoint("battery-status")

    -- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html =========================== short test summary info ============================
    FAILED tests/cli/test_main.py::test_main_succeeds - AssertionError: SystemExi...
    =========== 1 failed, 260 passed, 30 skipped, 135 warnings in 1.79s ============
    E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build; python3.13 -m pytest tests
    dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p "3.12 3.13" returned exit code 13
    make: *** [debian/rules:3: binary] Error 25
    dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2 --------------------------------------------------------------------------------

    The above is just how the build ends and not necessarily the most relevant part.
    If required, the full build log is available here:

    https://people.debian.org/~sanvila/build-logs/202502/

    About the archive rebuild: The build was made on virtual machines from AWS, using sbuild and a reduced chroot with only build-essential packages.

    If you could not reproduce the bug please contact me privately, as I
    am willing to provide ssh access to a virtual machine where the bug is
    fully reproducible.

    If this is really a bug in one of the build-depends, please use
    reassign and add an affects on src:python-renault-api, so that this is still visible in the BTS web page for this package.

    Thanks.

    --- SoupGate-Win32 v1.05
    * Origin: fsxNet Usenet Gateway (21:1/5)
  • From Debian Bug Tracking System@21:1/5 to All on Sat Feb 22 22:00:01 2025
    This is a multi-part message in MIME format...

    Your message dated Sat, 22 Feb 2025 20:49:52 +0000
    with message-id <E1tlwRc-00B3wZ-Jm@fasolo.debian.org>
    and subject line Bug#1098609: fixed in python-renault-api 0.2.9-2
    has caused the Debian Bug report #1098609,
    regarding python-renault-api: FTBFS: E assert 2 == 0
    to be marked as done.

    This means that you claim that the problem has been dealt with.
    If this is not the case it is now your responsibility to reopen the
    Bug report if necessary, and/or fix the problem forthwith.

    (NB: If you are a system administrator and have no idea what this
    message is talking about, this may indicate a serious mail system misconfiguration somewhere. Please contact owner@bugs.debian.org
    immediately.)


    --
    1098609: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1098609
    Debian Bug Tracking System
    Contact owner@bugs.debian.org with problems

    Received: (at submit) by bugs.debian.org; 21 Feb 2025 23:29:00 +0000 X-Spam-Checker-Version: SpamAssassin 3.4.6-bugs.debian.org_2005_01_02
    (2021-04-09) on buxtehude.debian.org
    X-Spam-Level:
    X-Spam-Status: No, score=-120.6 required=4.0 tests=ALL_TRUSTED,BAYES_00,
    BODY_INCLUDES_PACKAGE,DKIMWL_WL_HIGH,DKIM_SIGNED,DKIM_VALID,
    DKIM_VALID_AU,DKIM_VALID_EF,FROMDEVELOPER,HAS_PACKAGE,SPF_HELO_PASS,
    SPF_NONE,USER_IN_DKIM_WELCOMELIST,USER_IN_DKIM_WHITELIST,
    WORD_WITHOUT_VOWELS,X_DEBBUGS_CC autolearn=ham autolearn_force=no
    version=3.4.6-bugs.debian.org_2005_01_02
    X-Spam-Bayes: score:0.0000 Tokens: new, 83; hammy, 150; neutral, 353; spammy,
    0. spammytokens: hammytokens:0.000-+--python3, 0.000-+--trixie,
    0.000-+--pkgbuilddir, 0.000-+--PKGBUILDDIR, 0.000-+--sk:dh_auto Return-path: <sanvila@debian.org>
    Received: from mailly.debian.org ([2001:41b8:202:deb:656