From 8292ff7d0fee14f4c10b0f873520ee8a8b4ffe27 Mon Sep 17 00:00:00 2001 From: holger krekel Date: Fri, 20 Nov 2009 10:17:49 +0100 Subject: [PATCH] fixing docs, adding draft announcement --HG-- branch : trunk --- doc/announce/release-1.1.1.txt | 44 ++++++++++++++++++++++++++++++++++ doc/test/dist.txt | 4 ++-- 2 files changed, 46 insertions(+), 2 deletions(-) create mode 100644 doc/announce/release-1.1.1.txt diff --git a/doc/announce/release-1.1.1.txt b/doc/announce/release-1.1.1.txt new file mode 100644 index 000000000..78fd8d9a7 --- /dev/null +++ b/doc/announce/release-1.1.1.txt @@ -0,0 +1,44 @@ +py.test/pylib 1.1.1: bugfix release, improved 1.0.x backward compat +-------------------------------------------------------------------------------- + +This is a compatibility fixing release of pylib/py.test to work +better with previous 1.0.x code bases. It also contains fixes +and changes to work with `execnet>=1.0.0b4`_ which is now required +(but is not installed automatically, issue "easy_install -U execnet"). +Last but not least, documentation has been improved. + +What is pylib/py.test? +----------------------- + +py.test is an advanced automated testing tool working with +Python2, Python3 and Jython versions on all major operating +systems. It has an extensive plugin architecture and can run many +existing common Python test suites without modification. Moreover, +it offers some unique features not found in other +testing tools. See http://pytest.org for more info. + +The pylib contains a localpath and svnpath implementation +and some developer-oriented command line tools. See +http://pylib.org for more info. + +thanks to all who helped and gave feedback, +have fun, + +holger (http://twitter.com/hpk42) + +.. _`execnet>=1.0.0b4`: http://codespeak.net/execnet + +Changes between 1.1.1 and 1.1.0 +===================================== + +- fix py.test dist-testing to work with execnet >= 1.0.0b4 (required) + +- re-introduce py.test.cmdline.main() for better backward compatibility + +- svn paths: fix a bug with path.check(versioned=True) for svn paths, + allow '%' in svn paths, make svnwc.update() default to interactive mode + like in 1.0.x and add svnwc.update(interactive=False) to inhibit interaction. + +- try harder to have deprecation warnings for py.compat.* accesses + report a correct location + diff --git a/doc/test/dist.txt b/doc/test/dist.txt index 8bc83aa7f..2b39b6689 100644 --- a/doc/test/dist.txt +++ b/doc/test/dist.txt @@ -12,9 +12,9 @@ are reported back and displayed to your local test session. You may specify different Python versions and interpreters. **Requirements**: you need to install the `execnet`_ package -to perform distributed test runs. +(at least version 1.0.0b4) to perform distributed test runs. -**NOTE**: Version 1.1.0 is not able to distribute tests across Python3/Python2 barriers. +**NOTE**: Version 1.1.x is not able to distribute tests across Python3/Python2 barriers. Speed up test runs by sending tests to multiple CPUs ----------------------------------------------------------