bump to 2.1.1, regen examples, add release announcement

This commit is contained in:
holger krekel
2011-08-20 18:37:00 +02:00
parent fb1b1d9aae
commit 09933b8b04
22 changed files with 193 additions and 154 deletions

View File

@@ -49,7 +49,7 @@ You can now run the test::
$ py.test test_sample.py
=========================== test session starts ============================
platform linux2 -- Python 2.6.6 -- pytest-2.0.3
platform linux2 -- Python 2.7.1 -- pytest-2.1.1
collecting ... collected 1 items
test_sample.py F
@@ -57,7 +57,7 @@ You can now run the test::
================================= FAILURES =================================
_______________________________ test_answer ________________________________
mysetup = <conftest.MySetup instance at 0x2c1b128>
mysetup = <conftest.MySetup instance at 0x1d345f0>
def test_answer(mysetup):
app = mysetup.myapp()
@@ -66,7 +66,7 @@ You can now run the test::
E assert 54 == 42
test_sample.py:4: AssertionError
========================= 1 failed in 0.02 seconds =========================
========================= 1 failed in 0.01 seconds =========================
This means that our ``mysetup`` object was successfully instantiated
and ``mysetup.app()`` returned an initialized ``MyApp`` instance.
@@ -122,12 +122,12 @@ Running it yields::
$ py.test test_ssh.py -rs
=========================== test session starts ============================
platform linux2 -- Python 2.6.6 -- pytest-2.0.3
platform linux2 -- Python 2.7.1 -- pytest-2.1.1
collecting ... collected 1 items
test_ssh.py s
========================= short test summary info ==========================
SKIP [1] /tmp/doc-exec-37/conftest.py:22: specify ssh host with --ssh
SKIP [1] /tmp/doc-exec-296/conftest.py:22: specify ssh host with --ssh
======================== 1 skipped in 0.01 seconds =========================