Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #112261 > unrolled thread

ANN: datatest 0.7.0 (Test driven data wrangling)

Started byShawn Brown <03sjbrown@gmail.com>
First post2016-08-02 21:26 -0400
Last post2016-08-02 21:26 -0400
Articles 1 — 1 participant

Back to article view | Back to comp.lang.python

This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by below is the oldest one visible, not the original post.


Contents

  ANN: datatest 0.7.0 (Test driven data wrangling) Shawn Brown <03sjbrown@gmail.com> - 2016-08-02 21:26 -0400

#112261 — ANN: datatest 0.7.0 (Test driven data wrangling)

FromShawn Brown <03sjbrown@gmail.com>
Date2016-08-02 21:26 -0400
SubjectANN: datatest 0.7.0 (Test driven data wrangling)
Message-ID<mailman.131.1470189392.6033.python-list@python.org>
datatest 0.7.0 (Test driven data wrangling)
===========================================

Datatest extends the standard library's unittest package to
provide testing tools for asserting data correctness.

 * Docs: http://datatest.readthedocs.io/
 * PyPI: https://pypi.python.org/pypi/datatest/

This release includes:

 * Removes internal magic and renames data assertions to more
   clearly indicate their intended use.
 * Restructures data allowances to provide more consistent
   parameters and more flexible usage.
 * Adds new method to assert unique values.
 * Adds full **fmtparams support for CSV handling.
 * Fixes comparison and allowance behavior for None vs. zero.

Update installs with:

  pip install -U datatest

Backward Compatibility: Existing code that relies on the 0.6.0 (dev1) API
is supported with the following addition to the beginning of each script:

    from datatest.__past__ import api_dev1

[toc] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web