2015-12-21 03:05:20 +00:00
|
|
|
[pytest]
|
|
|
|
testpaths = bidict tests docs
|
2016-06-28 04:05:22 +00:00
|
|
|
addopts = --verbose --doctest-modules --doctest-glob=tests/*.txt
|
|
|
|
--doctest-glob=docs/*.rst --doctest-glob=docs/*.rst.inc
|
|
|
|
--ignore=setup.py --ignore=docs/conf.py
|
squashed changes for 0.13.0
- support Python 3.6, refactor CI/test setup, increase test coverage
- refactor BidirectionalMapping, BidictBase, OrderedBidictBase,
FrozenBidictBase, and subclasses
- move frozenorderedbidict into _frozen and looseorderedbidict into _loose
- register bidict as a virtual subclass of MutableMapping rather than
inheriting from it directly. This makes it clearer that it does not use any
of the concrete generic methods that MutableMapping provides.
- improve performance and flexibility of frozenbidict and
frozenorderedbidict hashing
- docs, including new type-hierarchy.png diagram
- rm unused imap, ifilter, izip_longest from compat, add PYPY
- update to latest versions of dependencies
- restore benchmarking on travis
2017-01-09 15:37:31 +00:00
|
|
|
--benchmark-columns=mean,stddev,outliers
|
|
|
|
--benchmark-group-by=func
|
2016-12-06 23:09:45 +00:00
|
|
|
# --benchmark-save-data
|
|
|
|
# --benchmark-autosave
|
|
|
|
# --benchmark-compare
|
2016-10-05 15:59:51 +00:00
|
|
|
# --hypothesis-show-statistics
|
2015-12-21 03:05:20 +00:00
|
|
|
doctest_optionflags = IGNORE_EXCEPTION_DETAIL ELLIPSIS
|