Package: src:python-aioinflux
Version: 0.9.0-5
Severity: serious
Tags: ftbfs

Dear maintainer:

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

--------------------------------------------------------------------------------
[...]
 debian/rules binary
dh binary --with python3 --buildsystem=pybuild
   dh_update_autotools_config -O--buildsystem=pybuild
   dh_autoreconf -O--buildsystem=pybuild
   dh_auto_configure -O--buildsystem=pybuild
I: pybuild base:311: python3.12 setup.py config
running config
   dh_auto_build -O--buildsystem=pybuild
I: pybuild base:311: /usr/bin/python3 setup.py build
running build
running build_py
creating /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_aioinflux/build/aioinflux
copying aioinflux/compat.py -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_aioinflux/build/aioinflux
copying aioinflux/__init__.py -> 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_aioinflux/build/aioinflux

[... snipped ...]

    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe66d3a0>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
______________________________ test_show_tag_keys ______________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_show_tag_keys(client):
      r = await client.show_tag_keys()

tests/test_client.py:209:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:374: in query
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe75f770>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
_____________________________ test_show_field_keys _____________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_show_field_keys(client):
      r = await client.show_field_keys()

tests/test_client.py:219:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:374: in query
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe66e6c0>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
_____________________________ test_show_tag_values _____________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_show_tag_values(client):
      r = await client.show_tag_values('host')

tests/test_client.py:229:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:374: in query
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe5b97f0>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
_________________________ test_show_continuous_queries _________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_show_continuous_queries(client):
      r = await client.show_continuous_queries()

tests/test_client.py:239:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:374: in query
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe66d970>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
___________________________ test_chunked_query_error ___________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_chunked_query_error(client):
        with pytest.raises(InfluxDBError) as e:
            resp = await client.query('INVALID QUERY', chunked=True, 
chunk_size=10)
          _ = [i async for i in resp]

tests/test_client.py:252:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:333: in _chunked_generator
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe5ba4e0>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
___________________________ test_invalid_data_write ____________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_invalid_data_write(client):
        with pytest.raises(InfluxDBWriteError) as e:
            # Plain invalid data
          await client.write(utils.random_string())

tests/test_client.py:260:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:297: in write
    async with self._session.post(url, params=params, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe5bab40>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
______________________________ test_invalid_query ______________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_invalid_query(client):
        with pytest.raises(InfluxDBError) as e:
          await client.query('NOT A VALID QUERY')

tests/test_client.py:301:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:374: in query
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe5b8e30>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
_____________________________ test_statement_error _____________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_statement_error(client):
        with pytest.raises(InfluxDBError) as e:
          await client.query('SELECT * FROM my_measurement', db='fake_db')

tests/test_client.py:308:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:374: in query
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe5b9250>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
---------------------------- Captured log teardown -----------------------------
2024-10-06 18:29:42 | asyncio | DEBUG: Using selector: EpollSelector
2024-10-06 18:29:42 | aioinflux | DEBUG: 200: DROP DATABASE "client_test"
_________________________ test_iterpoints_with_parser __________________________

iter_client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, 
opts={}, redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_iterpoints_with_parser(iter_client):
      r = await iter_client.query("SELECT * FROM cpu_load LIMIT 3")

tests/test_iter.py:8:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:374: in query
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe6a9100>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
------------------------------ Captured log setup ------------------------------
2024-10-06 18:29:42 | asyncio | DEBUG: Using selector: EpollSelector
2024-10-06 18:29:42 | aioinflux | DEBUG: 200: CREATE DATABASE "iter_client_test"
2024-10-06 18:29:42 | asyncio | DEBUG: Using selector: EpollSelector
_______________________________ test_aiter_point _______________________________

iter_client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, 
opts={}, redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_aiter_point(iter_client):
        resp = await iter_client.query('SELECT * from cpu_load', chunked=True, 
chunk_size=10)
        points = []
      async for chunk in resp:

tests/test_iter.py:21:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:333: in _chunked_generator
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe5b9250>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
__________________________ test_iter_point_namedtuple __________________________

iter_client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, 
opts={}, redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_iter_point_namedtuple(iter_client):
        from collections import namedtuple
        nt = namedtuple('cpu_load', ['time', 'direction', 'host', 'region', 
'value'])
      resp = await iter_client.query('SELECT * from cpu_load')

tests/test_iter.py:32:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:374: in query
    async with self._session.post(url, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe6abf20>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
---------------------------- Captured log teardown -----------------------------
2024-10-06 18:29:42 | asyncio | DEBUG: Using selector: EpollSelector
2024-10-06 18:29:42 | aioinflux | DEBUG: 200: DROP DATABASE "iter_client_test"
________________________________ test_decorator ________________________________

client = InfluxDBClient(ssl=False, host=localhost, port=8086, path=/, opts={}, 
redis_opts=None, cache_expiry=86400, mode=async)

    @pytest.mark.asyncio
    async def test_decorator(client):
        @lineprotocol
        class MyPoint(NamedTuple):
            measurement: aioinflux.MEASUREMENT
            time: aioinflux.TIMEINT
            host: aioinflux.TAG
            running: aioinflux.BOOL
            users: aioinflux.INT
            cpu_load: aioinflux.FLOAT
            cpu_load_level: aioinflux.ENUM
            cpu_load_level_tag: aioinflux.TAGENUM
            running_cost: aioinflux.DECIMAL
            uuid: aioinflux.STR
p = MyPoint(
            measurement="dp",
            time=1500,
            host="us1",
            running=True,
            users=1000,
            cpu_load=99.5,
            cpu_load_level=CpuLoad.HIGH,
            cpu_load_level_tag=CpuLoad.LOW,
            running_cost=Decimal('3.54'),
            uuid=str(uuid.uuid4()),
        )
        assert p
        assert hasattr(p, 'to_lineprotocol')
      assert await client.write(p)

tests/test_usertype.py:51:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
aioinflux/client.py:297: in write
    async with self._session.post(url, params=params, data=data) as resp:
/usr/lib/python3/dist-packages/aiohttp/client.py:1355: in __aenter__
    self._resp: _RetType = await self._coro
/usr/lib/python3/dist-packages/aiohttp/client.py:575: in _request
    with timer:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = <aiohttp.helpers.TimerContext object at 0x7f39fe6aa150>

    def __enter__(self) -> BaseTimerContext:
        task = asyncio.current_task(loop=self._loop)
        if task is None:
          raise RuntimeError(
                "Timeout context manager should be used " "inside a task"
            )
E           RuntimeError: Timeout context manager should be used inside a task

/usr/lib/python3/dist-packages/aiohttp/helpers.py:699: RuntimeError
------------------------------ Captured log setup ------------------------------
2024-10-06 18:29:42 | asyncio | DEBUG: Using selector: EpollSelector
2024-10-06 18:29:42 | aioinflux | DEBUG: 200: CREATE DATABASE "client_test"
2024-10-06 18:29:42 | asyncio | DEBUG: Using selector: EpollSelector
=============================== warnings summary ===============================
tests/testing_utils.py:24
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_aioinflux/build/tests/testing_utils.py:24:
 SyntaxWarning: invalid escape sequence '\e'
    'fi\neld_k\ey': random.randint(0, 200),

tests/test_client.py::test_ping
tests/test_iter.py::test_iterpoints_with_parser
tests/test_usertype.py::test_decorator
  /usr/lib/python3/dist-packages/pytest_asyncio/plugin.py:783: 
DeprecationWarning: The event_loop fixture provided by pytest-asyncio has been 
redefined in
  /<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_aioinflux/build/tests/conftest.py:9
  Replacing the event_loop fixture with a custom implementation is deprecated
  and will lead to errors in the future.
  If you want to request an asyncio event loop with a scope other than function
  scope, use the "scope" argument to the asyncio mark when marking the tests.
  If you want to return different types of event loops, use the 
event_loop_policy
  fixture.
warnings.warn(

tests/test_usertype.py::test_datetime
  
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_aioinflux/build/tests/test_usertype.py:93:
 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).
    p = MyPoint("a", datetime.utcnow(), "b", False, 5)

-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED tests/test_client.py::test_ping - RuntimeError: Timeout context manage...
FAILED tests/test_client.py::test_write_simple - RuntimeError: Timeout contex...
FAILED tests/test_client.py::test_write_string - RuntimeError: Timeout contex...
FAILED tests/test_client.py::test_write_tagless - RuntimeError: Timeout conte...
FAILED tests/test_client.py::test_write_special_values - RuntimeError: Timeou...
FAILED tests/test_client.py::test_write_with_custom_measurement - RuntimeErro...
FAILED tests/test_client.py::test_write_without_timestamp - RuntimeError: Tim...
FAILED tests/test_client.py::test_write_non_string_identifier_and_tags - Runt...
FAILED tests/test_client.py::test_write_to_non_default_db - RuntimeError: Tim...
FAILED tests/test_client.py::test_write_to_non_default_rp - RuntimeError: Tim...
FAILED tests/test_client.py::test_simple_query - RuntimeError: Timeout contex...
FAILED tests/test_client.py::test_chunked_query - RuntimeError: Timeout conte...
FAILED tests/test_client.py::test_empty_chunked_query - RuntimeError: Timeout...
FAILED tests/test_client.py::test_create_database - RuntimeError: Timeout con...
FAILED tests/test_client.py::test_drop_database - RuntimeError: Timeout conte...
FAILED tests/test_client.py::test_drop_measurement - RuntimeError: Timeout co...
FAILED tests/test_client.py::test_show_databases - RuntimeError: Timeout cont...
FAILED tests/test_client.py::test_show_measurements - RuntimeError: Timeout c...
FAILED tests/test_client.py::test_show_users - RuntimeError: Timeout context ...
FAILED tests/test_client.py::test_show_series - RuntimeError: Timeout context...
FAILED tests/test_client.py::test_show_retention_policies - RuntimeError: Tim...
FAILED tests/test_client.py::test_show_tag_keys - RuntimeError: Timeout conte...
FAILED tests/test_client.py::test_show_field_keys - RuntimeError: Timeout con...
FAILED tests/test_client.py::test_show_tag_values - RuntimeError: Timeout con...
FAILED tests/test_client.py::test_show_continuous_queries - RuntimeError: Tim...
FAILED tests/test_client.py::test_chunked_query_error - RuntimeError: Timeout...
FAILED tests/test_client.py::test_invalid_data_write - RuntimeError: Timeout ...
FAILED tests/test_client.py::test_invalid_query - RuntimeError: Timeout conte...
FAILED tests/test_client.py::test_statement_error - RuntimeError: Timeout con...
FAILED tests/test_iter.py::test_iterpoints_with_parser - RuntimeError: Timeou...
FAILED tests/test_iter.py::test_aiter_point - RuntimeError: Timeout context m...
FAILED tests/test_iter.py::test_iter_point_namedtuple - RuntimeError: Timeout...
FAILED tests/test_usertype.py::test_decorator - RuntimeError: Timeout context...
============= 33 failed, 13 passed, 2 skipped, 5 warnings in 1.10s =============
E: pybuild pybuild:389: test: plugin distutils failed with: exit code=1: cd 
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.12_aioinflux/build; python3.12 -m pytest 
--ignore=tests/test_dataframe.py
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.12 
returned exit code 13
make: *** [debian/rules:14: 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/202410/

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 affects, so that this is still visible in the BTS web
page for this package.

Thanks.

Reply via email to