Skip to content

Commit

Permalink
Remove autogenerated runner.StatsCollector.__repr__ to make
Browse files Browse the repository at this point in the history
Hypothesis output more readable.
  • Loading branch information
Dmitry Dygalo authored and Stranger6667 committed Oct 11, 2019
1 parent d8e4b39 commit 37dbbcf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ Added

- HTTP Digest Auth support. `#106`_

Removed
~~~~~~~

- Autogenerated ``runner.StatsCollector.__repr__`` to make Hypothesis output more readable.

`0.9.0`_ - 2019-10-09
---------------------

Expand Down
2 changes: 1 addition & 1 deletion src/schemathesis/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def _stats_data_factory() -> defaultdict:
return defaultdict(Counter)


@attr.s(slots=True)
@attr.s(slots=True, repr=False)
class StatsCollector:
"""A container for collected data from test executor."""

Expand Down

0 comments on commit 37dbbcf

Please sign in to comment.