Path: csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail From: Shawn Brown <03sjbrown@gmail.com> Newsgroups: comp.lang.python Subject: ANN: datatest 0.7.0 (Test driven data wrangling) Date: Tue, 2 Aug 2016 21:26:22 -0400 Lines: 27 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 X-Trace: news.uni-berlin.de RUJZIlS7SWUGy1ahuMHT1wHC5WTlUgibpA0Rljvg3VRg== Return-Path: <03sjbrown@gmail.com> X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'url:pypi': 0.03; 'fixes': 0.05; 'removes': 0.05; 'extends': 0.07; 'subject:ANN': 0.07; 'unittest': 0.07; 'api': 0.09; 'csv': 0.09; 'zero.': 0.09; '(test': 0.16; '0.6.0': 0.16; 'correctness.': 0.16; 'handling.': 0.16; 'magic': 0.16; 'received:io': 0.16; 'received:psf.io': 0.16; 'renames': 0.16; 'to:2**1': 0.21; 'consistent': 0.23; 'import': 0.24; 'testing': 0.25; 'install': 0.25; 'supported': 0.27; 'parameters': 0.27; 'to:no real name:2**1': 0.27; 'message- id:@mail.gmail.com': 0.27; 'comparison': 0.29; 'relies': 0.29; 'code': 0.30; 'url:python': 0.33; 'driven': 0.33; 'values.': 0.33; 'received:google.com': 0.35; 'url:org': 0.36; 'beginning': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'method': 0.37; 'release': 0.37; 'data': 0.39; 'to:addr:python.org': 0.40; 'behavior': 0.61; 'provide': 0.61; 'more': 0.63; 'includes:': 0.66; 'pip': 0.84; 'subject:Test': 0.84; 'url:readthedocs': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:from:date:message-id:subject:to; bh=vE8zjyd4g2o6EOpDmVmD52MEMtmJc5n4np3ltQQJ9wg=; b=nWLCcKoGg+r8c0E/bRoih8o6Nm3ZYEwG2JiDDMkMmIkcrQNLvezj3YRFnE0v8uapXK gT6sc+qrNGnKmBAxedXkr4veg4z+OPLAYPR9EbpVZ3LSZkmzJvNTazIZr43VJd3s/wHI CAXxBdarsSUpe5Mi3MWRzCaTDbtVZjPAVypwWJBJ0QvnyBTiWwsMhPGWlzvbJmkUqmyr bWVbo9a5Y86BjHzM+NMYBWqZq78Bd1Ycvau4zS6oRP1H8l49YqI0NRhlrtSazEKZg1uE WTLmT4M+B711HHwu9bCb34ybVnhocWBcarV1ekPGBbnyW8RNoVG3pOvrs1mH7y3jWffz m5aQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:from:date:message-id:subject:to; bh=vE8zjyd4g2o6EOpDmVmD52MEMtmJc5n4np3ltQQJ9wg=; b=WALtSNjL5JrKPOM1ZASLy6ZP42H18uo52AUHy54vY2ob+ieLyR3m4JA0bFdX6DsUns s3usOY7ER+6tVVNzguPCVQXNzFRTEuiarrTou/DjWSprRlvDd+d4ihgZQBkepk9ieZx6 tZVkIldBpyb3owHTx+FYKrbiDAUfZRDy6cqv2it3qj7rnMv9jsKF047o4D57G2fxz2jT KH9HaKHBEV8U1Y0PTr4T09u1CyxlHryU/YpjYp2/Tu11VZqjzAAGpMNe8QbkG9ckwpCm xqbMjJxijCknecMIEajQoXd7OY34fruYXky1z+JrDh6g/qNXtmptqMNzFVD6lZH8sU8U xm6g== X-Gm-Message-State: AEkoouvmn9OCDL3cA8yx0cz8y3VsSSDzeVCmpjV9u/zjyhmw9xOaoPAIB5rAL1uOvTSC6jzhVTABhYaONf6ZuQ== X-Received: by 10.176.80.229 with SMTP id d34mr471506uaa.24.1470187588530; Tue, 02 Aug 2016 18:26:28 -0700 (PDT) X-Mailman-Approved-At: Tue, 02 Aug 2016 21:56:31 -0400 X-Content-Filtered-By: Mailman/MimeDel 2.1.22 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-Mailman-Original-Message-ID: Xref: csiph.com comp.lang.python:112261 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