parent
99301a0dae
commit
3a23baf484
|
@ -21,6 +21,10 @@ Changes between 1.X and 1.1.1
|
||||||
|
|
||||||
- new "pytestconfig" funcarg allows access to test config object
|
- new "pytestconfig" funcarg allows access to test config object
|
||||||
|
|
||||||
|
- (experimental) allow "py.test path::name1::name2::..." for pointing
|
||||||
|
to a test within a test collection directly. This might eventually
|
||||||
|
evolve as a full substitute to "-k" specifications.
|
||||||
|
|
||||||
- streamlined plugin loading: order is now as documented in
|
- streamlined plugin loading: order is now as documented in
|
||||||
customize.html: setuptools, ENV, commandline, conftest.
|
customize.html: setuptools, ENV, commandline, conftest.
|
||||||
also setuptools entry point names are turned to canonical namees ("pytest_*")
|
also setuptools entry point names are turned to canonical namees ("pytest_*")
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -1,4 +1,3 @@
|
||||||
"""py lib / py.test setup.py file"""
|
|
||||||
import os, sys
|
import os, sys
|
||||||
if sys.version_info >= (3,0):
|
if sys.version_info >= (3,0):
|
||||||
from distribute_setup import use_setuptools
|
from distribute_setup import use_setuptools
|
||||||
|
@ -16,7 +15,7 @@ Platforms: Linux, Win32, OSX
|
||||||
Interpreters: Python versions 2.4 through to 3.1, Jython 2.5.1.
|
Interpreters: Python versions 2.4 through to 3.1, Jython 2.5.1.
|
||||||
For questions please check out http://pylib.org/contact.html
|
For questions please check out http://pylib.org/contact.html
|
||||||
|
|
||||||
.. _`py.test`: http://pylib.org/test.html
|
.. _`py.test`: http://pytest.org
|
||||||
.. _`py.path`: http://pylib.org/path.html
|
.. _`py.path`: http://pylib.org/path.html
|
||||||
.. _`py.code`: http://pylib.org/code.html
|
.. _`py.code`: http://pylib.org/code.html
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue