remove usage of final_logerrors now that we have better teardown information

This commit is contained in:
holger krekel
2011-12-02 21:03:58 +00:00
parent 1f6d410481
commit 8c6fea9895
6 changed files with 5 additions and 15 deletions

View File

@@ -2,7 +2,7 @@ from setuptools import setup
setup(
name="pytest-xdist",
version='1.8.dev1',
version='1.8.dev2',
description='py.test xdist plugin for distributed testing and loop-on-failing modes',
long_description=open('README.txt').read(),
license='GPLv2 or later',
@@ -13,7 +13,7 @@ setup(
packages = ['xdist'],
entry_points = {'pytest11': ['xdist = xdist.plugin'],},
zip_safe=False,
install_requires = ['execnet>=1.0.8', 'pytest>=2.2.1.dev1'],
install_requires = ['execnet>=1.0.8', 'pytest>=2.2.1.dev2'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
@@ -27,4 +27,4 @@ setup(
'Programming Language :: Python',
'Programming Language :: Python :: 3',
],
)
)