Your message dated Tue, 17 Dec 2019 16:34:27 +0000
with message-id <[email protected]>
and subject line Bug#945413: fixed in fast-histogram 0.7-2
has caused the Debian Bug report #945413,
regarding fast-histogram fails it's tests during the build
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 [email protected]
immediately.)


-- 
945413: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=945413
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:fast-historgram
Version: 0.7-1
Severity: serious
Tags: sid bullseye ftbfs
User: [email protected]
Usertags: python3.8

I: pybuild base:217: cd
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_fast-histogram/build; python3.8 -m pytest
============================= test session starts ==============================
platform linux -- Python 3.8.0+, pytest-4.6.6, py-1.8.0, pluggy-0.13.0
hypothesis profile 'default' ->
database=DirectoryBasedExampleDatabase('/<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_fast-histogram/build/.hypothesis/examples')
rootdir: /<<PKGBUILDDIR>>
plugins: hypothesis-4.36.2
collected 6 items

fast_histogram/tests/test_histogram.py FF....                            [100%]

=================================== FAILURES ===================================
__________________________ test_1d_compare_with_numpy __________________________

    @given(size=st.integers(0, 100),
>          nx=st.integers(1, 10),
           xmin=st.floats(-1e10, 1e10), xmax=st.floats(-1e10, 1e10),
           weights=st.booleans(),
           dtype=st.sampled_from(['>f4', '<f4', '>f8', '<f8']))
    @settings(max_examples=5000)

fast_histogram/tests/test_histogram.py:18:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3/dist-packages/hypothesis/core.py:563: in execute
    result = self.test_runner(data, run)
/usr/lib/python3/dist-packages/hypothesis/executors.py:56: in
default_new_style_executor
    return function(data)
/usr/lib/python3/dist-packages/hypothesis/core.py:561: in run
    return test(*args, **kwargs)
fast_histogram/tests/test_histogram.py:18: in test_1d_compare_with_numpy
    nx=st.integers(1, 10),
/usr/lib/python3/dist-packages/hypothesis/core.py:522: in test
    result = self.test(*args, **kwargs)
fast_histogram/tests/test_histogram.py:28: in test_1d_compare_with_numpy
    x = arrays(dtype, size, elements=st.floats(-1000, 1000)).example()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = arrays(dtype='>f4', shape=0, elements=floats(min_value=-1000,
max_value=1000))
random = not_set

    def example(self, random=not_set):
        # type: (UniqueIdentifier) -> Ex
        """Provide an example of the sort of value that this strategy
        generates. This is biased to be slightly simpler than is typical for
        values from this strategy, for clarity purposes.

        This method shouldn't be taken too seriously. It's here for interactive
        exploration of the API, not for any sort of real testing.

        This method is part of the public API.
        """
        if random is not not_set:
            note_deprecation("The random argument does nothing", 
since="2019-07-08")

        context = _current_build_context.value
        if context is not None:
            if context.data is not None and context.data.depth > 0:
                raise HypothesisException(
                    "Using example() inside a strategy definition is a bad "
                    "idea. Instead consider using 
hypothesis.strategies.builds() "
                    "or @hypothesis.strategies.composite to define your 
strategy."
                    " See https://hypothesis.readthedocs.io/en/latest/data.html";
                    "#hypothesis.strategies.builds or "
                    "https://hypothesis.readthedocs.io/en/latest/data.html";
                    "#composite-strategies for more details."
                )
            else:
>               raise HypothesisException(
                    "Using example() inside a test function is a bad "
                    "idea. Instead consider using hypothesis.strategies.data() "
                    "to draw more examples during testing. See "
                    "https://hypothesis.readthedocs.io/en/latest/data.html";
                    "#drawing-interactively-in-tests for more details."
                )
E               hypothesis.errors.HypothesisException: Using example() inside a
test function is a bad idea. Instead consider using hypothesis.strategies.data()
to draw more examples during testing. See
https://hypothesis.readthedocs.io/en/latest/data.html#drawing-interactively-in-tests
for more details.

/usr/lib/python3/dist-packages/hypothesis/searchstrategy/strategies.py:284:
HypothesisException
---------------------------------- Hypothesis ----------------------------------
Falsifying example: test_1d_compare_with_numpy(size=0, nx=1,
xmin=-2.2204460492503135e-06, xmax=0.0, weights=False, dtype='>f4')
__________________________ test_2d_compare_with_numpy __________________________

>   ???

fast_histogram/tests/test_histogram.py:66:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
/usr/lib/python3/dist-packages/hypothesis/core.py:326: in 
execute_explicit_examples
    test_runner(None, lambda data: test(*arguments, **example_kwargs))
/usr/lib/python3/dist-packages/hypothesis/executors.py:56: in
default_new_style_executor
    return function(data)
/usr/lib/python3/dist-packages/hypothesis/core.py:326: in <lambda>
    test_runner(None, lambda data: test(*arguments, **example_kwargs))
fast_histogram/tests/test_histogram.py:81: in test_2d_compare_with_numpy
    x = arrays(dtype, size, elements=st.floats(-1000, 1000)).example()
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _

self = arrays(dtype='<f8', shape=5, elements=floats(min_value=-1000,
max_value=1000))
random = not_set

    def example(self, random=not_set):
        # type: (UniqueIdentifier) -> Ex
        """Provide an example of the sort of value that this strategy
        generates. This is biased to be slightly simpler than is typical for
        values from this strategy, for clarity purposes.

        This method shouldn't be taken too seriously. It's here for interactive
        exploration of the API, not for any sort of real testing.

        This method is part of the public API.
        """
        if random is not not_set:
            note_deprecation("The random argument does nothing", 
since="2019-07-08")

        context = _current_build_context.value
        if context is not None:
            if context.data is not None and context.data.depth > 0:
                raise HypothesisException(
                    "Using example() inside a strategy definition is a bad "
                    "idea. Instead consider using 
hypothesis.strategies.builds() "
                    "or @hypothesis.strategies.composite to define your 
strategy."
                    " See https://hypothesis.readthedocs.io/en/latest/data.html";
                    "#hypothesis.strategies.builds or "
                    "https://hypothesis.readthedocs.io/en/latest/data.html";
                    "#composite-strategies for more details."
                )
            else:
>               raise HypothesisException(
                    "Using example() inside a test function is a bad "
                    "idea. Instead consider using hypothesis.strategies.data() "
                    "to draw more examples during testing. See "
                    "https://hypothesis.readthedocs.io/en/latest/data.html";
                    "#drawing-interactively-in-tests for more details."
                )
E               hypothesis.errors.HypothesisException: Using example() inside a
test function is a bad idea. Instead consider using hypothesis.strategies.data()
to draw more examples during testing. See
https://hypothesis.readthedocs.io/en/latest/data.html#drawing-interactively-in-tests
for more details.

/usr/lib/python3/dist-packages/hypothesis/searchstrategy/strategies.py:284:
HypothesisException
---------------------------------- Hypothesis ----------------------------------
Falsifying example: test_2d_compare_with_numpy(size=5, nx=1, xmin=0.0,
xmax=84.17833763374462, ny=1, ymin=-999999999.9999989, ymax=0.0, weights=False,
dtype='<f8')
====================== 2 failed, 4 passed in 0.29 seconds ======================
E: pybuild pybuild:341: test: plugin distutils failed with: exit code=1: cd
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.8_fast-histogram/build; python3.8 -m pytest
dh_auto_test: pybuild --test --test-pytest -i python{version} -p "3.8 3.7"
returned exit code 13
make: *** [debian/rules:9: binary-arch] Error 255

--- End Message ---
--- Begin Message ---
Source: fast-histogram
Source-Version: 0.7-2

We believe that the bug you reported is fixed in the latest version of
fast-histogram, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Josue Ortega <[email protected]> (supplier of updated fast-histogram package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA512

Format: 1.8
Date: Tue, 17 Dec 2019 09:49:05 -0600
Source: fast-histogram
Architecture: source
Version: 0.7-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Astronomy Maintainers 
<[email protected]>
Changed-By: Josue Ortega <[email protected]>
Closes: 945413
Changes:
 fast-histogram (0.7-2) unstable; urgency=medium
 .
   * Add patch to fix test_histogram (Closes: #945413)
   * Set package to use debhelper-compat 12
   * Bump Stadards-Version to 4.4.1. No changes required
Checksums-Sha1:
 b2366c45d7230c5b11c87880fa7504afe126f0e8 2182 fast-histogram_0.7-2.dsc
 93fff79da95ae1ce07e0cc6283e74f7946dd431d 2764 
fast-histogram_0.7-2.debian.tar.xz
 543403c67028aaef840db906d9fdca876a5cd71f 7360 
fast-histogram_0.7-2_amd64.buildinfo
Checksums-Sha256:
 9e362baa8476f91833f0302486838cc1936ab513117a46552e6a70ddfb4b1eaa 2182 
fast-histogram_0.7-2.dsc
 df71999e10c5bab49350a5c431ca7575a0f60fa5d2d53e97c9fa28d81cb0223c 2764 
fast-histogram_0.7-2.debian.tar.xz
 5722533a01d77e79fd56e1d87c96f7348e2c820828593f01d14e8a0b6c0ee151 7360 
fast-histogram_0.7-2_amd64.buildinfo
Files:
 a7aad5567076265d6a7de9a811185fce 2182 python optional fast-histogram_0.7-2.dsc
 9e62add8510c74a22baa714bbe8222fa 2764 python optional 
fast-histogram_0.7-2.debian.tar.xz
 f7d068ba4a3155cffdc5b1f5a3b1b7bb 7360 python optional 
fast-histogram_0.7-2_amd64.buildinfo

-----BEGIN PGP SIGNATURE-----

iQJFBAEBCgAvFiEEdzOzKNJ5X1viMlrdAVCdXKtK/T8FAl35AKMRHGpvc3VlQGRl
Ymlhbi5vcmcACgkQAVCdXKtK/T/nyQ/+J3fs1ANB8rasNFbn5aeseRzfCCDdTPui
/ek3ko60+uEoNRMlunmOqI+VcHzExQ9WEpp64sviSYHNIDvSETvgffRSjHdDmJYf
8JvwLN5GDmXYK66sZv64XvoKKpQ2rve++VqvenvDGdG8zteIaBJN63TBslctQ8R5
9YU+MzHw7aq4WoSJ5tsDyhJEh1rfAnk7MVJzn3KkTdUvVizg4jJIPmSDl4BE4A8l
/1Bo4Nb00tjHsqIwmn0nU6SHFtA/JS3V5X/RnsHWOcaT6k6nQScYo9jx0huxCE5W
B0VRCiFqMvuf2yWYzmHIVakDbRogNZ5D+qXU9BB6vEg6is3d4avwdjgssSGR66Ct
nUf2AAdxD574lRft3JD+NYLp9Up56JjRey4/8QI7N4rWILnvZstPXIASvReiwPWT
8bJrkH+USrQwP35HWB/8uHgvLWKsVo0BJGigocItpPGlB7HyIK7H9zrOLllzCVMO
QbSUYmf0Lp7B7Emgry9Bky2BRIHWWOrFf3D3QMhBKljROUuvJbt4G7p8KfOaDSUm
t+a5itdUprGXq4ak918VrUla3bxwUUnaTHb685JCbOsnE/5b5GwcinpJgjI2H313
T7V/3luBbJL2i5uVLuQF7yAltSF0PB1FamnMbZe9fUKBm3P2ppPntLb/c7dyOLWe
KWkwmnRTmwE=
=3hf3
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to