1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/commits/7697ae2f476d/
Changeset:   7697ae2f476d
User:        hpk42
Date:        2013-03-28 10:21:03
Summary:     - add release announce
Affected #:  5 files

diff -r 10c697d004b0543b80a6b74f2ccc001bd04031f9 -r 
7697ae2f476df2bbc3bf65006abb1ff9f11d1664 _pytest/__init__.py
--- a/_pytest/__init__.py
+++ b/_pytest/__init__.py
@@ -1,2 +1,2 @@
 #
-__version__ = '2.3.5dev6'
+__version__ = '2.3.5.dev8'

diff -r 10c697d004b0543b80a6b74f2ccc001bd04031f9 -r 
7697ae2f476df2bbc3bf65006abb1ff9f11d1664 doc/en/announce/release-2.3.5.txt
--- /dev/null
+++ b/doc/en/announce/release-2.3.5.txt
@@ -0,0 +1,59 @@
+pytest-2.3.5: bug fixes
+===========================================================================
+
+pytest-2.3.5 is a bug fix release for the pytest testing tool.
+See the changelog below for details.  And 
+
+     http://pytest.org/
+
+for general information.  To install or upgrade pytest:
+
+    pip install -U pytest # or
+    easy_install -U pytest
+
+best,
+holger krekel
+
+
+Changes between 2.3.4 and 2.3.5
+-----------------------------------
+
+- issue 259 - when assertion rewriting, be consistent with the default
+  source encoding of ASCII on Python 2
+
+- issue 251 - report a skip instead of ignoring classes with init
+
+- issue250 unicode/str mixes in parametrization names and values now works
+
+- issue257, assertion-triggered compilation of source ending in a
+  comment line doesn't blow up in python2.5 (fixed through py>=1.4.13)
+
+- fix --genscript option to generate standalone scripts that also
+  work with python3.3 (importer ordering)
+
+- issue171 - in assertion rewriting, show the repr of some
+  global variables
+
+- fix option help for "-k"
+
+- move long description of distribution into README.rst
+
+- improve docstring for metafunc.parametrize()
+
+- fix bug where using capsys with pytest.set_trace() in a test
+  function would break when looking at capsys.readouterr()
+
+- allow to specify prefixes starting with "_" when 
+  customizing python_functions test discovery. (thanks Graham Horler)
+
+- improve PYTEST_DEBUG tracing output by puting
+  extra data on a new lines with additional indent
+
+- ensure OutcomeExceptions like skip/fail have initialized exception attributes
+
+- issue 260 - don't use nose special setup on plain unittest cases
+
+- fix issue134 - print the collect errors that prevent running specified test 
items
+
+- fix issue266 - accept unicode in MarkEvaluator expressions
+

diff -r 10c697d004b0543b80a6b74f2ccc001bd04031f9 -r 
7697ae2f476df2bbc3bf65006abb1ff9f11d1664 setup.py
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@
         name='pytest',
         description='py.test: simple powerful testing with Python',
         long_description = long_description,
-        version='2.3.5.dev7',
+        version='2.3.5.dev8',
         url='http://pytest.org',
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],

diff -r 10c697d004b0543b80a6b74f2ccc001bd04031f9 -r 
7697ae2f476df2bbc3bf65006abb1ff9f11d1664 testing/acceptance_test.py
--- a/testing/acceptance_test.py
+++ b/testing/acceptance_test.py
@@ -505,6 +505,8 @@
     source = """
         import time
         frag = 0.02
+        def test_something():
+            pass
         def test_2():
             time.sleep(frag*5)
         def test_1():

diff -r 10c697d004b0543b80a6b74f2ccc001bd04031f9 -r 
7697ae2f476df2bbc3bf65006abb1ff9f11d1664 tox.ini
--- a/tox.ini
+++ b/tox.ini
@@ -2,7 +2,7 @@
 distshare={homedir}/.tox/distshare
 envlist=py25,py26,py27,py27-nobyte,py32,py33,py27-xdist,trial
 indexserver=
-    pypi = http://pypi.python.org/simple
+    pypi = https://pypi.python.org/simple
     testrun = http://pypi.testrun.org
     default = http://pypi.testrun.org
 
@@ -39,7 +39,6 @@
 
 [testenv:trial]
 changedir=.
-basepython=python2.6
 deps=:pypi:twisted
      :pypi:pexpect
 commands=

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
pytest-commit mailing list
pytest-commit@python.org
http://mail.python.org/mailman/listinfo/pytest-commit

Reply via email to