[Python-modules-commits] [python-hypothesis] branch master updated (c74b2e5 -> 342a618)

Tristan Seligmann mithrandi at moszumanska.debian.org
Sat Jan 23 02:52:24 UTC 2016


This is an automated email from the git hooks/post-receive script.

mithrandi pushed a change to branch master
in repository python-hypothesis.

      from  c74b2e5   Add myself to Uploaders.
       new  1a8e419   Run tests.
       new  b38575a   Switch to GitHub tarball to pick up the tests.
       new  9cb4900   Import python-hypothesis_1.18.0.orig.tar.gz
       new  890cdf8   record new upstream branch created by importing python-hypothesis_1.18.0.orig.tar.gz and merge it
       new  fca3bf6   New upstream release.
       new  e6e5eb9   Fix args.
       new  822d27f   Fix build deps.
       new  a54ba1a   More test fiddling.
       new  368180d   Add bug number.
       new  eb7b1f8   Import python-hypothesis_2.0.0.orig.tar.gz
       new  34e8b02   record new upstream branch created by importing python-hypothesis_2.0.0.orig.tar.gz and merge it
       new  342a618   New upstream version.

The 12 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                                        |   23 +
 .gitignore                                         |   12 +
 .travis.yml                                        |   80 +
 CONTRIBUTING.rst                                   |  156 +
 LICENSE.txt                                        |    4 +
 Makefile                                           |  184 +
 PKG-INFO                                           |   71 -
 README.rst                                         |   14 +-
 appveyor.yml                                       |   64 +
 debian/.git-dpm                                    |   14 +-
 debian/changelog                                   |   15 +
 debian/control                                     |   10 +-
 debian/rules                                       |    7 +-
 debian/watch                                       |    4 +-
 docs/_static/.empty                                |    0
 docs/changes.rst                                   | 1363 ++++++
 docs/community.rst                                 |   56 +
 docs/conf.py                                       |   97 +
 docs/data.rst                                      |  474 ++
 docs/database.rst                                  |   71 +
 docs/details.rst                                   |  524 +++
 docs/development.rst                               |   30 +
 docs/django.rst                                    |  245 +
 docs/endorsements.rst                              |  117 +
 docs/examples.rst                                  |  485 ++
 docs/extras.rst                                    |  197 +
 docs/healthchecks.rst                              |   24 +
 docs/index.rst                                     |   76 +
 docs/internals.rst                                 |  287 ++
 docs/manifesto.rst                                 |   60 +
 docs/packaging.rst                                 |  103 +
 docs/quickstart.rst                                |  319 ++
 docs/settings.rst                                  |  247 +
 docs/stateful.rst                                  |  407 ++
 docs/support.rst                                   |   16 +
 docs/supported.rst                                 |   91 +
 docs/usage.rst                                     |   36 +
 notebooks/Designing a better simplifier.ipynb      | 4911 ++++++++++++++++++++
 scripts/basic-test.sh                              |   74 +
 .../check_encoding_header.py                       |   25 +-
 scripts/enforce_header.py                          |   65 +
 .../testrunners/__init__.py => scripts/header.py   |    2 +
 scripts/install.ps1                                |  180 +
 scripts/install.sh                                 |  105 +
 scripts/pyenv-installer                            |   88 +
 scripts/retry.sh                                   |   13 +
 scripts/run_with_env.cmd                           |   47 +
 scripts/unicodechecker.py                          |   57 +
 setup.cfg                                          |    5 -
 setup.py                                           |   14 -
 src/hypothesis.egg-info/PKG-INFO                   |   71 -
 src/hypothesis.egg-info/SOURCES.txt                |   74 -
 src/hypothesis.egg-info/dependency_links.txt       |    1 -
 src/hypothesis.egg-info/entry_points.txt           |    3 -
 src/hypothesis.egg-info/not-zip-safe               |    1 -
 src/hypothesis.egg-info/requires.txt               |   30 -
 src/hypothesis.egg-info/top_level.txt              |    1 -
 src/hypothesis/__init__.py                         |   10 +-
 src/hypothesis/{settings.py => _settings.py}       |  298 +-
 src/hypothesis/configuration.py                    |   52 +
 src/hypothesis/control.py                          |    6 +-
 src/hypothesis/core.py                             |  465 +-
 src/hypothesis/errors.py                           |   17 +-
 src/hypothesis/executors/executors.py              |   10 +-
 src/hypothesis/extra/datetime.py                   |   23 -
 src/hypothesis/extra/django/fixtures.py            |    2 +-
 src/hypothesis/extra/pytestplugin.py               |    4 +-
 src/hypothesis/internal/charstree.py               |   22 +-
 src/hypothesis/internal/compat.py                  |   47 +-
 src/hypothesis/internal/debug.py                   |   12 +-
 src/hypothesis/{utils => internal}/extmethod.py    |    0
 src/hypothesis/internal/reflection.py              |  166 +-
 src/hypothesis/internal/strategymethod.py          |  214 -
 src/hypothesis/internal/tracker.py                 |    6 +-
 src/hypothesis/internal/typechecking.py            |   69 -
 src/hypothesis/reporting.py                        |   10 +-
 src/hypothesis/searchstrategy/__init__.py          |    5 -
 src/hypothesis/searchstrategy/basic.py             |  311 --
 src/hypothesis/searchstrategy/collections.py       |   51 +-
 src/hypothesis/searchstrategy/deferred.py          |   25 +-
 src/hypothesis/searchstrategy/flatmapped.py        |    7 +-
 src/hypothesis/searchstrategy/misc.py              |    2 +-
 src/hypothesis/searchstrategy/morphers.py          |  247 +-
 src/hypothesis/searchstrategy/narytree.py          |  166 -
 src/hypothesis/searchstrategy/numbers.py           |  152 +-
 src/hypothesis/searchstrategy/recursive.py         |   16 +-
 src/hypothesis/searchstrategy/reprwrapper.py       |    3 +
 src/hypothesis/searchstrategy/strategies.py        |   71 +-
 src/hypothesis/searchstrategy/streams.py           |    5 +-
 src/hypothesis/searchstrategy/strings.py           |    8 +-
 src/hypothesis/specifiers.py                       |   90 -
 src/hypothesis/stateful.py                         |   16 +-
 src/hypothesis/strategies.py                       |  350 +-
 src/hypothesis/strategytests.py                    |   94 +-
 src/hypothesis/types.py                            |    3 +-
 src/hypothesis/utils/dynamicvariables.py           |    4 +-
 src/hypothesis/utils/idkey.py                      |   53 -
 src/hypothesis/utils/show.py                       |  190 -
 src/hypothesis/version.py                          |    4 +-
 {src/hypothesis/extra => tests}/__init__.py        |    0
 tests/common/__init__.py                           |  113 +
 tests/common/utils.py                              |   63 +
 .../utils/dynamicvariables.py => tests/conftest.py |   50 +-
 {src/hypothesis/extra => tests/cover}/__init__.py  |    0
 tests/cover/test_bad_repr.py                       |   85 +
 tests/cover/test_caching.py                        |   55 +
 tests/cover/test_charstree.py                      |   90 +
 tests/cover/test_choices.py                        |   73 +
 .../cover/test_chooser.py                          |   43 +-
 tests/cover/test_classmap.py                       |   90 +
 tests/cover/test_collective_minimization.py        |   55 +
 tests/cover/test_composite.py                      |   96 +
 tests/cover/test_control.py                        |  115 +
 .../version.py => tests/cover/test_conventions.py  |    7 +-
 tests/cover/test_converter.py                      |   56 +
 tests/cover/test_core.py                           |   95 +
 tests/cover/test_custom_reprs.py                   |   58 +
 tests/cover/test_database.py                       |  259 ++
 tests/cover/test_database_backend.py               |   85 +
 tests/cover/test_deferred_errors.py                |   73 +
 tests/cover/test_direct_strategies.py              |  236 +
 .../cover/test_distributions.py                    |   42 +-
 .../cover/test_draw_example.py                     |   17 +-
 .../cover/test_dynamic_variable.py                 |   22 +-
 .../cover/test_eval_as_source.py                   |   37 +-
 .../conventions.py => tests/cover/test_example.py  |   15 +-
 tests/cover/test_examplesource.py                  |   91 +
 tests/cover/test_executors.py                      |   89 +
 tests/cover/test_exhaustion.py                     |   57 +
 tests/cover/test_explicit_examples.py              |  209 +
 tests/cover/test_extmethod.py                      |   69 +
 tests/cover/test_fancy_repr.py                     |   52 +
 tests/cover/test_filestorage.py                    |   56 +
 .../cover/test_filtering.py                        |   19 +-
 tests/cover/test_find.py                           |  108 +
 tests/cover/test_flakiness.py                      |  146 +
 tests/cover/test_flatmap.py                        |  117 +
 tests/cover/test_float_nastiness.py                |  131 +
 tests/cover/test_forking.py                        |  126 +
 tests/cover/test_given_error_conditions.py         |   62 +
 tests/cover/test_health_checks.py                  |  232 +
 .../conventions.py => tests/cover/test_imports.py  |   15 +-
 .../classmap.py => tests/cover/test_minimal.py     |   35 +-
 tests/cover/test_morpher.py                        |  119 +
 .../conventions.py => tests/cover/test_numerics.py |   18 +-
 .../conventions.py => tests/cover/test_one_of.py   |   23 +-
 .../cover/test_permutations.py                     |   22 +-
 .../cover/test_random_module.py                    |   41 +-
 tests/cover/test_randomization.py                  |   48 +
 tests/cover/test_recursive.py                      |  181 +
 tests/cover/test_reflection.py                     |  624 +++
 tests/cover/test_reporting.py                      |  101 +
 .../cover/test_sampled_from.py                     |   15 +-
 tests/cover/test_searchstrategy.py                 |  191 +
 tests/cover/test_sets.py                           |  108 +
 tests/cover/test_settings.py                       |  164 +
 tests/cover/test_setup_teardown.py                 |  142 +
 tests/cover/test_sharing.py                        |   75 +
 .../cover/test_shrinking_limits.py                 |   19 +-
 tests/cover/test_simple_characters.py              |   94 +
 tests/cover/test_simple_collections.py             |  272 ++
 tests/cover/test_simple_numbers.py                 |  299 ++
 tests/cover/test_simple_strings.py                 |  121 +
 tests/cover/test_sizes.py                          |   54 +
 tests/cover/test_stateful.py                       |  599 +++
 .../cover/test_strategytests.py                    |   16 +-
 tests/cover/test_streams.py                        |  181 +
 tests/cover/test_testdecorators.py                 |  578 +++
 .../cover/test_timeout.py                          |   40 +-
 tests/cover/test_tracker.py                        |   99 +
 .../conventions.py => tests/cover/test_uuids.py    |   16 +-
 tests/cover/test_validation.py                     |  192 +
 tests/cover/test_verbosity.py                      |  105 +
 tests/cover/test_via_the_database.py               |  115 +
 .../cover/test_weird_settings.py                   |   17 +-
 .../extra => tests/datetime}/__init__.py           |    0
 tests/datetime/test_dates.py                       |   69 +
 tests/datetime/test_datetime.py                    |  197 +
 tests/datetime/test_times.py                       |   98 +
 {src/hypothesis/extra => tests/django}/__init__.py |    0
 .../utils/conventions.py => tests/django/manage.py |   15 +-
 .../extra => tests/django/toys}/__init__.py        |    0
 tests/django/toys/settings.py                      |  104 +
 .../conventions.py => tests/django/toys/urls.py    |   17 +-
 .../conventions.py => tests/django/toys/wsgi.py    |   20 +-
 .../extra => tests/django/toystore}/__init__.py    |    0
 .../__init__.py => tests/django/toystore/admin.py  |    2 +
 tests/django/toystore/models.py                    |   81 +
 tests/django/toystore/test_basic_configuration.py  |   71 +
 tests/django/toystore/test_fixtures.py             |   88 +
 tests/django/toystore/test_given_models.py         |   83 +
 .../__init__.py => tests/django/toystore/views.py  |    2 +
 .../extra => tests/fakefactory}/__init__.py        |    0
 tests/fakefactory/test_fake_factory.py             |  106 +
 .../hypothesis/extra => tests/nocover}/__init__.py |    0
 tests/nocover/test_compat.py                       |   81 +
 .../classmap.py => tests/nocover/test_debug.py     |   34 +-
 tests/nocover/test_descriptortests.py              |  218 +
 tests/nocover/test_example_quality.py              |  508 ++
 tests/nocover/test_floating.py                     |  176 +
 tests/nocover/test_git_merge.py                    |  142 +
 tests/nocover/test_pretty_repr.py                  |  118 +
 tests/nocover/test_statistical_distribution.py     |  407 ++
 tests/nocover/test_strategy_state.py               |  368 ++
 .../nocover/test_streams.py                        |   18 +-
 {src/hypothesis/extra => tests/numpy}/__init__.py  |    0
 tests/numpy/test_gen_data.py                       |  102 +
 {src/hypothesis/extra => tests/py2}/__init__.py    |    0
 .../py2/test_destructuring.py                      |   20 +-
 {src/hypothesis/extra => tests/py3}/__init__.py    |    0
 .../py3/test_unicode_identifiers.py                |   24 +-
 tests/pytest/test_capture.py                       |   85 +
 .../utils/size.py => tests/pytest/test_compat.py   |   15 +-
 .../conventions.py => tests/pytest/test_mark.py    |   23 +-
 .../pytest/test_profiles.py                        |   39 +-
 .../classmap.py => tests/pytest/test_reporting.py  |   38 +-
 .../conventions.py => tests/pytest/test_runs.py    |   20 +-
 tox.ini                                            |  143 +
 218 files changed, 24006 insertions(+), 2815 deletions(-)
 create mode 100644 .coveragerc
 create mode 100644 .gitignore
 create mode 100644 .travis.yml
 create mode 100644 CONTRIBUTING.rst
 create mode 100644 LICENSE.txt
 create mode 100644 Makefile
 delete mode 100644 PKG-INFO
 create mode 100644 appveyor.yml
 create mode 100644 docs/_static/.empty
 create mode 100644 docs/changes.rst
 create mode 100644 docs/community.rst
 create mode 100644 docs/conf.py
 create mode 100644 docs/data.rst
 create mode 100644 docs/database.rst
 create mode 100644 docs/details.rst
 create mode 100644 docs/development.rst
 create mode 100644 docs/django.rst
 create mode 100644 docs/endorsements.rst
 create mode 100644 docs/examples.rst
 create mode 100644 docs/extras.rst
 create mode 100644 docs/healthchecks.rst
 create mode 100644 docs/index.rst
 create mode 100644 docs/internals.rst
 create mode 100644 docs/manifesto.rst
 create mode 100644 docs/packaging.rst
 create mode 100644 docs/quickstart.rst
 create mode 100644 docs/settings.rst
 create mode 100644 docs/stateful.rst
 create mode 100644 docs/support.rst
 create mode 100644 docs/supported.rst
 create mode 100644 docs/usage.rst
 create mode 100644 notebooks/Designing a better simplifier.ipynb
 create mode 100755 scripts/basic-test.sh
 copy src/hypothesis/utils/conventions.py => scripts/check_encoding_header.py (59%)
 create mode 100644 scripts/enforce_header.py
 copy src/hypothesis/testrunners/__init__.py => scripts/header.py (99%)
 create mode 100644 scripts/install.ps1
 create mode 100755 scripts/install.sh
 create mode 100755 scripts/pyenv-installer
 create mode 100755 scripts/retry.sh
 create mode 100644 scripts/run_with_env.cmd
 create mode 100644 scripts/unicodechecker.py
 delete mode 100644 src/hypothesis.egg-info/PKG-INFO
 delete mode 100644 src/hypothesis.egg-info/SOURCES.txt
 delete mode 100644 src/hypothesis.egg-info/dependency_links.txt
 delete mode 100644 src/hypothesis.egg-info/entry_points.txt
 delete mode 100644 src/hypothesis.egg-info/not-zip-safe
 delete mode 100644 src/hypothesis.egg-info/requires.txt
 delete mode 100644 src/hypothesis.egg-info/top_level.txt
 rename src/hypothesis/{settings.py => _settings.py} (63%)
 create mode 100644 src/hypothesis/configuration.py
 rename src/hypothesis/{utils => internal}/extmethod.py (100%)
 delete mode 100644 src/hypothesis/internal/strategymethod.py
 delete mode 100644 src/hypothesis/internal/typechecking.py
 delete mode 100644 src/hypothesis/searchstrategy/basic.py
 delete mode 100644 src/hypothesis/searchstrategy/narytree.py
 delete mode 100644 src/hypothesis/specifiers.py
 delete mode 100644 src/hypothesis/utils/idkey.py
 delete mode 100644 src/hypothesis/utils/show.py
 copy {src/hypothesis/extra => tests}/__init__.py (100%)
 create mode 100644 tests/common/__init__.py
 create mode 100644 tests/common/utils.py
 copy src/hypothesis/utils/dynamicvariables.py => tests/conftest.py (51%)
 copy {src/hypothesis/extra => tests/cover}/__init__.py (100%)
 create mode 100644 tests/cover/test_bad_repr.py
 create mode 100644 tests/cover/test_caching.py
 create mode 100644 tests/cover/test_charstree.py
 create mode 100644 tests/cover/test_choices.py
 copy src/hypothesis/utils/dynamicvariables.py => tests/cover/test_chooser.py (55%)
 create mode 100644 tests/cover/test_classmap.py
 create mode 100644 tests/cover/test_collective_minimization.py
 create mode 100644 tests/cover/test_composite.py
 create mode 100644 tests/cover/test_control.py
 copy src/hypothesis/version.py => tests/cover/test_conventions.py (81%)
 create mode 100644 tests/cover/test_converter.py
 create mode 100644 tests/cover/test_core.py
 create mode 100644 tests/cover/test_custom_reprs.py
 create mode 100644 tests/cover/test_database.py
 create mode 100644 tests/cover/test_database_backend.py
 create mode 100644 tests/cover/test_deferred_errors.py
 create mode 100644 tests/cover/test_direct_strategies.py
 copy src/hypothesis/utils/dynamicvariables.py => tests/cover/test_distributions.py (52%)
 copy src/hypothesis/utils/conventions.py => tests/cover/test_draw_example.py (64%)
 copy src/hypothesis/utils/conventions.py => tests/cover/test_dynamic_variable.py (62%)
 copy src/hypothesis/internal/classmap.py => tests/cover/test_eval_as_source.py (56%)
 copy src/hypothesis/utils/conventions.py => tests/cover/test_example.py (71%)
 create mode 100644 tests/cover/test_examplesource.py
 create mode 100644 tests/cover/test_executors.py
 create mode 100644 tests/cover/test_exhaustion.py
 create mode 100644 tests/cover/test_explicit_examples.py
 create mode 100644 tests/cover/test_extmethod.py
 create mode 100644 tests/cover/test_fancy_repr.py
 create mode 100644 tests/cover/test_filestorage.py
 copy src/hypothesis/utils/conventions.py => tests/cover/test_filtering.py (65%)
 create mode 100644 tests/cover/test_find.py
 create mode 100644 tests/cover/test_flakiness.py
 create mode 100644 tests/cover/test_flatmap.py
 create mode 100644 tests/cover/test_float_nastiness.py
 create mode 100644 tests/cover/test_forking.py
 create mode 100644 tests/cover/test_given_error_conditions.py
 create mode 100644 tests/cover/test_health_checks.py
 copy src/hypothesis/utils/conventions.py => tests/cover/test_imports.py (75%)
 copy src/hypothesis/internal/classmap.py => tests/cover/test_minimal.py (54%)
 create mode 100644 tests/cover/test_morpher.py
 copy src/hypothesis/utils/conventions.py => tests/cover/test_numerics.py (63%)
 copy src/hypothesis/utils/conventions.py => tests/cover/test_one_of.py (53%)
 copy src/hypothesis/utils/conventions.py => tests/cover/test_permutations.py (60%)
 copy src/hypothesis/utils/dynamicvariables.py => tests/cover/test_random_module.py (50%)
 create mode 100644 tests/cover/test_randomization.py
 create mode 100644 tests/cover/test_recursive.py
 create mode 100644 tests/cover/test_reflection.py
 create mode 100644 tests/cover/test_reporting.py
 copy src/hypothesis/utils/conventions.py => tests/cover/test_sampled_from.py (76%)
 create mode 100644 tests/cover/test_searchstrategy.py
 create mode 100644 tests/cover/test_sets.py
 create mode 100644 tests/cover/test_settings.py
 create mode 100644 tests/cover/test_setup_teardown.py
 create mode 100644 tests/cover/test_sharing.py
 copy src/hypothesis/utils/conventions.py => tests/cover/test_shrinking_limits.py (69%)
 create mode 100644 tests/cover/test_simple_characters.py
 create mode 100644 tests/cover/test_simple_collections.py
 create mode 100644 tests/cover/test_simple_numbers.py
 create mode 100644 tests/cover/test_simple_strings.py
 create mode 100644 tests/cover/test_sizes.py
 create mode 100644 tests/cover/test_stateful.py
 copy src/hypothesis/utils/conventions.py => tests/cover/test_strategytests.py (66%)
 create mode 100644 tests/cover/test_streams.py
 create mode 100644 tests/cover/test_testdecorators.py
 copy src/hypothesis/utils/dynamicvariables.py => tests/cover/test_timeout.py (53%)
 create mode 100644 tests/cover/test_tracker.py
 copy src/hypothesis/utils/conventions.py => tests/cover/test_uuids.py (66%)
 create mode 100644 tests/cover/test_validation.py
 create mode 100644 tests/cover/test_verbosity.py
 create mode 100644 tests/cover/test_via_the_database.py
 copy src/hypothesis/utils/conventions.py => tests/cover/test_weird_settings.py (75%)
 copy {src/hypothesis/extra => tests/datetime}/__init__.py (100%)
 create mode 100644 tests/datetime/test_dates.py
 create mode 100644 tests/datetime/test_datetime.py
 create mode 100644 tests/datetime/test_times.py
 copy {src/hypothesis/extra => tests/django}/__init__.py (100%)
 copy src/hypothesis/utils/conventions.py => tests/django/manage.py (74%)
 mode change 100644 => 100755
 copy {src/hypothesis/extra => tests/django/toys}/__init__.py (100%)
 create mode 100644 tests/django/toys/settings.py
 copy src/hypothesis/utils/conventions.py => tests/django/toys/urls.py (66%)
 copy src/hypothesis/utils/conventions.py => tests/django/toys/wsgi.py (65%)
 copy {src/hypothesis/extra => tests/django/toystore}/__init__.py (100%)
 copy src/hypothesis/testrunners/__init__.py => tests/django/toystore/admin.py (90%)
 create mode 100644 tests/django/toystore/models.py
 create mode 100644 tests/django/toystore/test_basic_configuration.py
 create mode 100644 tests/django/toystore/test_fixtures.py
 create mode 100644 tests/django/toystore/test_given_models.py
 copy src/hypothesis/testrunners/__init__.py => tests/django/toystore/views.py (90%)
 copy {src/hypothesis/extra => tests/fakefactory}/__init__.py (100%)
 create mode 100644 tests/fakefactory/test_fake_factory.py
 copy {src/hypothesis/extra => tests/nocover}/__init__.py (100%)
 create mode 100644 tests/nocover/test_compat.py
 copy src/hypothesis/internal/classmap.py => tests/nocover/test_debug.py (55%)
 create mode 100644 tests/nocover/test_descriptortests.py
 create mode 100644 tests/nocover/test_example_quality.py
 create mode 100644 tests/nocover/test_floating.py
 create mode 100644 tests/nocover/test_git_merge.py
 create mode 100644 tests/nocover/test_pretty_repr.py
 create mode 100644 tests/nocover/test_statistical_distribution.py
 create mode 100644 tests/nocover/test_strategy_state.py
 copy src/hypothesis/utils/conventions.py => tests/nocover/test_streams.py (61%)
 copy {src/hypothesis/extra => tests/numpy}/__init__.py (100%)
 create mode 100644 tests/numpy/test_gen_data.py
 copy {src/hypothesis/extra => tests/py2}/__init__.py (100%)
 copy src/hypothesis/utils/conventions.py => tests/py2/test_destructuring.py (59%)
 copy {src/hypothesis/extra => tests/py3}/__init__.py (100%)
 copy src/hypothesis/utils/conventions.py => tests/py3/test_unicode_identifiers.py (66%)
 create mode 100644 tests/pytest/test_capture.py
 copy src/hypothesis/utils/size.py => tests/pytest/test_compat.py (78%)
 copy src/hypothesis/utils/conventions.py => tests/pytest/test_mark.py (60%)
 copy src/hypothesis/utils/dynamicvariables.py => tests/pytest/test_profiles.py (52%)
 copy src/hypothesis/internal/classmap.py => tests/pytest/test_reporting.py (55%)
 copy src/hypothesis/utils/conventions.py => tests/pytest/test_runs.py (72%)
 create mode 100644 tox.ini

-- 
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