[Python-modules-commits] [python-hypothesis] branch upstream updated (56b9a3b -> 766cc74)
Tristan Seligmann
mithrandi at moszumanska.debian.org
Fri Jul 7 12:50:31 UTC 2017
This is an automated email from the git hooks/post-receive script.
mithrandi pushed a change to branch upstream
in repository python-hypothesis.
from 56b9a3b Import python-hypothesis_3.6.1.orig.tar.gz
new 766cc74 Import python-hypothesis_3.12.0.orig.tar.gz
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
.coveragerc | 1 -
.gitignore | 4 +
.isort.cfg | 2 +
.pyup.yml | 10 +
.travis.yml | 74 +-
CONTRIBUTING.rst | 112 +--
Makefile | 201 +++--
appveyor.yml | 54 +-
.../intlists-valid=always-interesting=always | 29 +
...ntlists-valid=always-interesting=has_duplicates | 29 +
.../intlists-valid=always-interesting=lower_bound | 29 +
.../intlists-valid=always-interesting=minsum | 29 +
.../intlists-valid=always-interesting=never | 29 +
.../intlists-valid=always-interesting=nontrivial | 29 +
.../intlists-valid=always-interesting=usually | 29 +
...ntlists-valid=has_duplicates-interesting=minsum | 29 +
.../intlists-valid=usually-interesting=nontrivial | 29 +
.../ints-valid=always-interesting=always | 29 +
.../ints-valid=always-interesting=lower_bound | 29 +
benchmark-data/ints-valid=always-interesting=never | 29 +
.../ints-valid=always-interesting=nontrivial | 29 +
.../ints-valid=always-interesting=usually | 29 +
.../ints-valid=usually-interesting=nontrivial | 29 +
.../sizedintlists-valid=always-interesting=always | 29 +
...edintlists-valid=always-interesting=lower_bound | 29 +
.../sizedintlists-valid=always-interesting=never | 29 +
...zedintlists-valid=always-interesting=nontrivial | 29 +
.../sizedintlists-valid=always-interesting=usually | 29 +
...edintlists-valid=usually-interesting=nontrivial | 29 +
benchmarks/test_strategies.py | 152 ----
circle.yml | 19 +
docs/changes.rst | 377 +++++++--
docs/community.rst | 9 +-
docs/conf.py | 42 +-
docs/data.rst | 239 +++---
docs/database.rst | 31 +-
docs/details.rst | 131 +--
docs/development.rst | 49 +-
docs/django.rst | 10 +-
docs/endorsements.rst | 43 +-
docs/examples.rst | 107 ++-
docs/extras.rst | 164 +---
docs/index.rst | 5 +-
docs/numpy.rst | 18 +
docs/packaging.rst | 16 +-
docs/quickstart.rst | 14 +-
docs/settings.rst | 73 +-
docs/stateful.rst | 94 ++-
docs/strategies.rst | 17 +-
docs/support.rst | 5 +-
docs/supported.rst | 53 +-
docs/usage.rst | 7 +-
examples/test_binary_search.py | 2 +-
examples/test_rle.py | 4 +-
guides/README.rst | 10 +
guides/documentation.rst | 68 ++
guides/review.rst | 219 +++++
requirements/benchmark.in | 4 +
requirements/benchmark.txt | 10 +
requirements/test.in | 3 +
requirements/test.txt | 12 +
requirements/tools.in | 10 +
requirements/tools.txt | 48 ++
scripts/basic-test.sh | 37 +-
scripts/benchmarks.py | 521 ++++++++++++
scripts/check-ancient-pip.sh | 20 +-
scripts/check-changelog.py | 101 +++
...{check_encoding_header.py => check-untagged.py} | 36 +-
scripts/check_encoding_header.py | 11 +-
scripts/deploy.py | 157 ++++
scripts/enforce_header.py | 70 +-
scripts/files-to-format.py | 52 ++
scripts/header.py | 2 +-
scripts/hypothesistooling.py | 187 +++++
scripts/install.sh | 43 +-
scripts/retry.sh | 4 +-
scripts/run-circle.sh | 14 +
.../test_permutations.py => scripts/tool-hash.py | 34 +-
scripts/unicodechecker.py | 18 +-
secrets.tar.enc | Bin 0 -> 10256 bytes
setup.py | 55 +-
src/hypothesis/__init__.py | 2 +-
src/hypothesis/_settings.py | 20 +-
src/hypothesis/configuration.py | 2 +-
src/hypothesis/control.py | 10 +-
src/hypothesis/core.py | 895 ++++++++++++---------
src/hypothesis/database.py | 10 +-
src/hypothesis/errors.py | 8 +-
src/hypothesis/executors.py | 6 +-
src/hypothesis/extra/__init__.py | 2 +-
src/hypothesis/extra/datetime.py | 161 ++--
src/hypothesis/extra/django/__init__.py | 2 +-
src/hypothesis/extra/django/models.py | 13 +-
src/hypothesis/extra/fakefactory.py | 2 +-
src/hypothesis/extra/numpy.py | 312 ++++++-
src/hypothesis/extra/pytestplugin.py | 220 ++---
src/hypothesis/extra/pytz.py | 57 ++
src/hypothesis/internal/__init__.py | 2 +-
src/hypothesis/internal/charmap.py | 6 +-
src/hypothesis/internal/classmap.py | 2 +-
src/hypothesis/internal/compat.py | 110 +--
src/hypothesis/internal/conjecture/__init__.py | 2 +-
src/hypothesis/internal/conjecture/data.py | 32 +-
src/hypothesis/internal/conjecture/engine.py | 410 +++++++---
src/hypothesis/internal/conjecture/minimizer.py | 275 +++++--
src/hypothesis/internal/conjecture/utils.py | 268 ++++--
src/hypothesis/internal/debug.py | 96 ---
src/hypothesis/internal/deferredformat.py | 2 +-
src/hypothesis/internal/detection.py | 2 +-
.../hypothesis/internal/escalation.py | 28 +-
src/hypothesis/internal/floats.py | 9 +-
src/hypothesis/internal/intervalsets.py | 2 +-
src/hypothesis/internal/reflection.py | 103 ++-
src/hypothesis/reporting.py | 4 +-
src/hypothesis/searchstrategy/__init__.py | 2 +-
src/hypothesis/searchstrategy/collections.py | 11 +-
src/hypothesis/searchstrategy/datetime.py | 120 +++
src/hypothesis/searchstrategy/deferred.py | 26 +-
src/hypothesis/searchstrategy/fixed.py | 64 --
src/hypothesis/searchstrategy/flatmapped.py | 2 +-
src/hypothesis/searchstrategy/misc.py | 4 +-
src/hypothesis/searchstrategy/numbers.py | 91 +--
src/hypothesis/searchstrategy/recursive.py | 13 +-
src/hypothesis/searchstrategy/reprwrapper.py | 2 +-
src/hypothesis/searchstrategy/shared.py | 2 +-
src/hypothesis/searchstrategy/strategies.py | 17 +-
src/hypothesis/searchstrategy/streams.py | 2 +-
src/hypothesis/searchstrategy/strings.py | 27 +-
src/hypothesis/searchstrategy/wrappers.py | 2 +-
src/hypothesis/stateful.py | 126 ++-
src/hypothesis/statistics.py | 2 +-
src/hypothesis/strategies.py | 345 ++++++--
src/hypothesis/strategytests.py | 2 +-
src/hypothesis/tools/__init__.py | 2 +-
src/hypothesis/tools/mergedbs.py | 2 +-
src/hypothesis/types.py | 2 +-
src/hypothesis/utils/__init__.py | 2 +-
src/hypothesis/utils/conventions.py | 2 +-
src/hypothesis/utils/dynamicvariables.py | 2 +-
src/hypothesis/version.py | 4 +-
tests/__init__.py | 2 +-
tests/common/__init__.py | 7 +-
tests/common/debug.py | 58 ++
tests/common/setup.py | 2 +-
tests/common/utils.py | 24 +-
tests/conftest.py | 32 +-
tests/cover/__init__.py | 2 +-
tests/cover/test_arbitrary_data.py | 25 +-
tests/cover/test_bad_repr.py | 2 +-
tests/cover/test_caching.py | 2 +-
tests/cover/test_charmap.py | 2 +-
tests/cover/test_choices.py | 2 +-
tests/cover/test_classmap.py | 2 +-
.../{test_weird_settings.py => test_completion.py} | 17 +-
tests/cover/test_composite.py | 2 +-
tests/cover/test_conjecture_engine.py | 145 ++--
tests/cover/test_conjecture_minimizer.py | 9 +-
tests/cover/test_conjecture_test_data.py | 31 +-
tests/cover/test_conjecture_utils.py | 100 ++-
tests/cover/test_control.py | 6 +-
tests/cover/test_conventions.py | 2 +-
tests/cover/test_core.py | 2 +-
tests/cover/test_custom_reprs.py | 9 +-
tests/cover/test_database_agreement.py | 4 +-
tests/cover/test_database_backend.py | 2 +-
tests/cover/test_database_usage.py | 10 +-
tests/cover/test_datetimes.py | 173 ++++
tests/cover/test_deferred_errors.py | 2 +-
tests/cover/test_detection.py | 2 +-
tests/cover/test_direct_strategies.py | 46 +-
tests/cover/test_draw_example.py | 2 +-
tests/cover/test_duplication.py | 69 ++
tests/cover/test_dynamic_variable.py | 2 +-
tests/cover/test_eval_as_source.py | 2 +-
tests/cover/test_example.py | 2 +-
tests/cover/test_executors.py | 6 +-
tests/cover/test_explicit_examples.py | 18 +-
tests/cover/test_fancy_repr.py | 2 +-
tests/cover/test_filestorage.py | 2 +-
tests/cover/test_filtering.py | 2 +-
tests/cover/test_find.py | 2 +-
tests/cover/test_fixed_strategies.py | 80 --
tests/cover/test_flakiness.py | 4 +-
tests/cover/test_flatmap.py | 2 +-
tests/cover/test_float_nastiness.py | 55 +-
.../test_float_utils.py} | 10 +-
tests/cover/test_given_error_conditions.py | 2 +-
.../test_given_reuse.py} | 39 +-
tests/cover/test_health_checks.py | 4 +-
tests/cover/test_imports.py | 2 +-
tests/cover/test_integer_ranges.py | 27 +-
tests/cover/test_interleaving.py | 2 +-
tests/cover/test_internal_helpers.py | 2 +-
tests/cover/test_intervalset.py | 2 +-
tests/cover/test_lambda_formatting.py | 117 +++
tests/cover/test_limits.py | 2 +-
tests/cover/test_map.py | 2 +-
tests/cover/test_nothing.py | 2 +-
tests/cover/test_numerics.py | 47 +-
tests/cover/test_permutations.py | 2 +-
tests/cover/test_phases.py | 4 +-
tests/cover/test_pretty.py | 2 +-
tests/cover/test_random_module.py | 31 +-
tests/cover/test_randomization.py | 4 +-
tests/cover/test_recursive.py | 2 +-
tests/cover/test_reflection.py | 201 ++---
tests/cover/test_reporting.py | 4 +-
tests/cover/test_runner_strategy.py | 2 +-
tests/cover/test_sampled_from.py | 38 +-
tests/cover/test_searchstrategy.py | 2 +-
tests/cover/test_sets.py | 2 +-
tests/cover/test_settings.py | 4 +-
tests/cover/test_setup_teardown.py | 2 +-
tests/cover/test_sharing.py | 2 +-
tests/cover/test_shrinking_limits.py | 2 +-
tests/cover/test_simple_characters.py | 2 +-
tests/cover/test_simple_collections.py | 4 +-
tests/cover/test_simple_numbers.py | 109 +--
tests/cover/test_simple_strings.py | 6 +-
tests/cover/test_stateful.py | 139 +++-
tests/cover/test_statistical_events.py | 2 +-
tests/cover/test_strategytests.py | 4 +-
tests/cover/test_streams.py | 2 +-
tests/cover/test_testdecorators.py | 10 +-
tests/cover/test_threading.py | 2 +-
tests/cover/test_timeout.py | 44 -
tests/cover/test_uuids.py | 2 +-
tests/cover/test_validation.py | 2 +-
tests/cover/test_verbosity.py | 4 +-
tests/cover/test_weird_settings.py | 2 +-
tests/datetime/__init__.py | 2 +-
tests/datetime/test_dates.py | 17 +-
tests/datetime/test_datetime.py | 62 +-
tests/datetime/test_times.py | 36 +-
tests/datetime/test_timezones.py | 99 +++
tests/django/__init__.py | 2 +-
tests/django/manage.py | 2 +-
tests/django/toys/__init__.py | 2 +-
tests/django/toys/settings.py | 8 +-
tests/django/toys/urls.py | 16 +-
tests/django/toys/wsgi.py | 2 +-
tests/django/toystore/__init__.py | 2 +-
tests/django/toystore/admin.py | 2 +-
tests/django/toystore/models.py | 2 +-
tests/django/toystore/test_basic_configuration.py | 2 +-
tests/django/toystore/test_email_strategies.py | 2 +-
tests/django/toystore/test_given_models.py | 11 +-
tests/django/toystore/views.py | 2 +-
tests/fakefactory/__init__.py | 2 +-
tests/fakefactory/test_fake_factory.py | 4 +-
tests/nocover/__init__.py | 2 +-
tests/nocover/test_choices.py | 2 +-
tests/nocover/test_collective_minimization.py | 2 +-
tests/nocover/test_compat.py | 45 +-
tests/nocover/test_descriptortests.py | 18 +-
tests/nocover/test_example_quality.py | 596 --------------
.../test_fixtures.py} | 17 +-
tests/nocover/test_floating.py | 2 +-
tests/nocover/test_git_merge.py | 2 +-
tests/nocover/test_pretty_repr.py | 2 +-
tests/nocover/test_recursive.py | 4 +-
tests/nocover/test_statistical_distribution.py | 548 -------------
tests/nocover/test_strategy_state.py | 25 +-
tests/nocover/test_streams.py | 2 +-
tests/numpy/__init__.py | 2 +-
tests/numpy/test_gen_data.py | 87 +-
tests/py2/__init__.py | 2 +-
tests/py2/test_destructuring.py | 2 +-
tests/py3/__init__.py | 2 +-
tests/py3/test_annotations.py | 99 ++-
tests/py3/test_asyncio.py | 2 +-
tests/py3/test_unicode_identifiers.py | 2 +-
tests/pytest/test_capture.py | 57 +-
tests/pytest/test_compat.py | 2 +-
tests/pytest/test_doctest.py | 2 +-
tests/pytest/{test_runs.py => test_fixtures.py} | 34 +-
tests/pytest/test_mark.py | 2 +-
tests/pytest/test_profiles.py | 2 +-
tests/pytest/test_reporting.py | 2 +-
tests/pytest/test_runs.py | 5 +-
tests/pytest/test_statistics.py | 2 +-
.../conjecture => tests/quality}/__init__.py | 2 +-
tests/quality/test_discovery_ability.py | 405 ++++++++++
tests/quality/test_shrink_quality.py | 234 ++++++
tox.ini | 101 +--
285 files changed, 8406 insertions(+), 4503 deletions(-)
create mode 100644 .isort.cfg
create mode 100644 .pyup.yml
create mode 100644 benchmark-data/intlists-valid=always-interesting=always
create mode 100644 benchmark-data/intlists-valid=always-interesting=has_duplicates
create mode 100644 benchmark-data/intlists-valid=always-interesting=lower_bound
create mode 100644 benchmark-data/intlists-valid=always-interesting=minsum
create mode 100644 benchmark-data/intlists-valid=always-interesting=never
create mode 100644 benchmark-data/intlists-valid=always-interesting=nontrivial
create mode 100644 benchmark-data/intlists-valid=always-interesting=usually
create mode 100644 benchmark-data/intlists-valid=has_duplicates-interesting=minsum
create mode 100644 benchmark-data/intlists-valid=usually-interesting=nontrivial
create mode 100644 benchmark-data/ints-valid=always-interesting=always
create mode 100644 benchmark-data/ints-valid=always-interesting=lower_bound
create mode 100644 benchmark-data/ints-valid=always-interesting=never
create mode 100644 benchmark-data/ints-valid=always-interesting=nontrivial
create mode 100644 benchmark-data/ints-valid=always-interesting=usually
create mode 100644 benchmark-data/ints-valid=usually-interesting=nontrivial
create mode 100644 benchmark-data/sizedintlists-valid=always-interesting=always
create mode 100644 benchmark-data/sizedintlists-valid=always-interesting=lower_bound
create mode 100644 benchmark-data/sizedintlists-valid=always-interesting=never
create mode 100644 benchmark-data/sizedintlists-valid=always-interesting=nontrivial
create mode 100644 benchmark-data/sizedintlists-valid=always-interesting=usually
create mode 100644 benchmark-data/sizedintlists-valid=usually-interesting=nontrivial
delete mode 100644 benchmarks/test_strategies.py
create mode 100644 circle.yml
create mode 100644 docs/numpy.rst
create mode 100644 guides/README.rst
create mode 100644 guides/documentation.rst
create mode 100644 guides/review.rst
create mode 100644 requirements/benchmark.in
create mode 100644 requirements/benchmark.txt
create mode 100644 requirements/test.in
create mode 100644 requirements/test.txt
create mode 100644 requirements/tools.in
create mode 100644 requirements/tools.txt
create mode 100644 scripts/benchmarks.py
create mode 100644 scripts/check-changelog.py
copy scripts/{check_encoding_header.py => check-untagged.py} (50%)
mode change 100644 => 100755
create mode 100644 scripts/deploy.py
create mode 100644 scripts/files-to-format.py
create mode 100644 scripts/hypothesistooling.py
create mode 100755 scripts/run-circle.sh
copy tests/cover/test_permutations.py => scripts/tool-hash.py (58%)
mode change 100644 => 100755
create mode 100644 secrets.tar.enc
create mode 100644 src/hypothesis/extra/pytz.py
delete mode 100644 src/hypothesis/internal/debug.py
copy tests/django/manage.py => src/hypothesis/internal/escalation.py (51%)
mode change 100755 => 100644
create mode 100644 src/hypothesis/searchstrategy/datetime.py
delete mode 100644 src/hypothesis/searchstrategy/fixed.py
create mode 100644 tests/common/debug.py
copy tests/cover/{test_weird_settings.py => test_completion.py} (75%)
create mode 100644 tests/cover/test_datetimes.py
create mode 100644 tests/cover/test_duplication.py
delete mode 100644 tests/cover/test_fixed_strategies.py
copy tests/{py3/test_annotations.py => cover/test_float_utils.py} (75%)
copy tests/{py2/test_destructuring.py => cover/test_given_reuse.py} (57%)
create mode 100644 tests/cover/test_lambda_formatting.py
delete mode 100644 tests/cover/test_timeout.py
create mode 100644 tests/datetime/test_timezones.py
delete mode 100644 tests/nocover/test_example_quality.py
copy tests/{cover/test_internal_helpers.py => nocover/test_fixtures.py} (68%)
delete mode 100644 tests/nocover/test_statistical_distribution.py
copy tests/pytest/{test_runs.py => test_fixtures.py} (52%)
copy {src/hypothesis/internal/conjecture => tests/quality}/__init__.py (90%)
create mode 100644 tests/quality/test_discovery_ability.py
create mode 100644 tests/quality/test_shrink_quality.py
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/python-modules/packages/python-hypothesis.git
More information about the Python-modules-commits
mailing list