2008-08-18 23:08:39 +08:00
|
|
|
import os, sys
|
2011-07-09 04:58:22 +08:00
|
|
|
try:
|
2012-10-20 23:32:03 +08:00
|
|
|
from setuptools import setup, Command
|
2011-07-09 04:58:22 +08:00
|
|
|
except ImportError:
|
2009-10-29 19:45:12 +08:00
|
|
|
from distribute_setup import use_setuptools
|
|
|
|
use_setuptools()
|
2012-10-20 23:32:03 +08:00
|
|
|
from setuptools import setup, Command
|
2008-08-21 18:18:58 +08:00
|
|
|
|
2009-10-29 19:45:12 +08:00
|
|
|
long_description = """
|
2012-11-06 22:36:11 +08:00
|
|
|
The `py.test`` testing tool makes it easy to write small tests, yet
|
|
|
|
scales to support complex functional testing. It provides
|
2008-08-21 18:18:58 +08:00
|
|
|
|
2012-11-06 22:36:11 +08:00
|
|
|
- `auto-discovery
|
|
|
|
<http://pytest.org/latest/goodpractises.html#python-test-discovery>`_
|
|
|
|
of test modules and functions,
|
|
|
|
- detailed info on failing `assert statements <http://pytest.org/latest/assert.html>`_ (no need to remember ``self.assert*`` names)
|
|
|
|
- `modular fixtures <http://pytest.org/latest/fixture.html>`_ for
|
|
|
|
managing small or parametrized long-lived test resources.
|
|
|
|
- multi-paradigm support: you can use ``py.test`` to run test suites based
|
|
|
|
on `unittest <http://pytest.org/latest/unittest.html>`_ (or trial),
|
|
|
|
`nose <http://pytest.org/latest/nose.html>`_
|
|
|
|
- single-source compatibility to Python2.4 all the way up to Python3.3,
|
2012-11-07 16:35:49 +08:00
|
|
|
PyPy-1.9 and Jython-2.5.1.
|
2010-09-14 22:18:06 +08:00
|
|
|
|
2012-11-06 22:36:11 +08:00
|
|
|
- many `external plugins <http://pytest.org/latest/plugins.html#installing-external-plugins-searching>`_.
|
2010-09-14 22:18:06 +08:00
|
|
|
|
2012-11-06 22:36:11 +08:00
|
|
|
A simple example for a test::
|
2010-09-14 22:18:06 +08:00
|
|
|
|
2012-11-06 22:36:11 +08:00
|
|
|
# content of test_module.py
|
|
|
|
def test_function():
|
|
|
|
i = 4
|
|
|
|
assert i == 3
|
|
|
|
|
|
|
|
which can be run with ``py.test test_module.py``. See `getting-started <http://pytest.org/latest/getting-started.html#our-first-test-run>`_ for more examples.
|
|
|
|
|
|
|
|
For much more info, including PDF docs, see
|
|
|
|
|
|
|
|
http://pytest.org
|
|
|
|
|
|
|
|
and report bugs at:
|
|
|
|
|
|
|
|
http://bitbucket.org/hpk42/pytest/issues/
|
2008-08-21 18:18:58 +08:00
|
|
|
|
2012-02-01 21:52:34 +08:00
|
|
|
(c) Holger Krekel and others, 2004-2012
|
2008-08-21 18:18:58 +08:00
|
|
|
"""
|
2008-08-18 23:08:39 +08:00
|
|
|
def main():
|
2008-08-21 18:18:58 +08:00
|
|
|
setup(
|
2010-10-07 17:59:00 +08:00
|
|
|
name='pytest',
|
2010-10-15 06:54:25 +08:00
|
|
|
description='py.test: simple powerful testing with Python',
|
2009-10-03 07:47:39 +08:00
|
|
|
long_description = long_description,
|
2012-11-12 17:15:43 +08:00
|
|
|
version='2.3.4.dev4',
|
2010-10-15 06:54:25 +08:00
|
|
|
url='http://pytest.org',
|
2008-08-18 23:08:39 +08:00
|
|
|
license='MIT license',
|
2009-10-03 07:47:39 +08:00
|
|
|
platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],
|
2011-06-01 14:00:12 +08:00
|
|
|
author='Holger Krekel, Benjamin Peterson, Ronny Pfannschmidt, Floris Bruynooghe and others',
|
2009-10-03 07:47:39 +08:00
|
|
|
author_email='holger at merlinux.eu',
|
2009-12-24 02:58:52 +08:00
|
|
|
entry_points= make_entry_points(),
|
2012-10-20 23:32:03 +08:00
|
|
|
cmdclass = {'test': PyTest},
|
2011-07-07 03:44:57 +08:00
|
|
|
# the following should be enabled for release
|
2012-11-06 21:41:10 +08:00
|
|
|
install_requires=['py>=1.4.12'],
|
2011-08-21 00:37:00 +08:00
|
|
|
classifiers=['Development Status :: 6 - Mature',
|
2008-08-18 23:08:39 +08:00
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: POSIX',
|
|
|
|
'Operating System :: Microsoft :: Windows',
|
|
|
|
'Operating System :: MacOS :: MacOS X',
|
|
|
|
'Topic :: Software Development :: Testing',
|
|
|
|
'Topic :: Software Development :: Libraries',
|
|
|
|
'Topic :: Utilities',
|
2012-11-06 16:14:41 +08:00
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 3'] + [
|
|
|
|
("Programming Language :: Python :: %s" % x) for x in
|
|
|
|
"2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3".split()],
|
2011-05-31 21:21:08 +08:00
|
|
|
packages=['_pytest', '_pytest.assertion'],
|
2010-11-13 18:10:45 +08:00
|
|
|
py_modules=['pytest'],
|
2009-10-29 19:45:12 +08:00
|
|
|
zip_safe=False,
|
2008-08-18 23:08:39 +08:00
|
|
|
)
|
|
|
|
|
2009-12-24 02:58:52 +08:00
|
|
|
def cmdline_entrypoints(versioninfo, platform, basename):
|
2010-11-06 06:37:31 +08:00
|
|
|
target = 'pytest:main'
|
2010-01-03 21:19:31 +08:00
|
|
|
if platform.startswith('java'):
|
2010-10-07 17:59:00 +08:00
|
|
|
points = {'py.test-jython': target}
|
2010-01-03 21:19:31 +08:00
|
|
|
else:
|
|
|
|
if basename.startswith("pypy"):
|
2010-10-07 17:59:00 +08:00
|
|
|
points = {'py.test-%s' % basename: target}
|
2010-01-03 21:19:31 +08:00
|
|
|
else: # cpython
|
2010-10-07 17:59:00 +08:00
|
|
|
points = {'py.test-%s.%s' % versioninfo[:2] : target,}
|
|
|
|
points['py.test'] = target
|
2009-12-24 02:58:52 +08:00
|
|
|
return points
|
|
|
|
|
|
|
|
def make_entry_points():
|
|
|
|
basename = os.path.basename(sys.executable)
|
|
|
|
points = cmdline_entrypoints(sys.version_info, sys.platform, basename)
|
|
|
|
keys = list(points.keys())
|
|
|
|
keys.sort()
|
|
|
|
l = ["%s = %s" % (x, points[x]) for x in keys]
|
|
|
|
return {'console_scripts': l}
|
|
|
|
|
2012-10-20 23:32:03 +08:00
|
|
|
|
|
|
|
class PyTest(Command):
|
|
|
|
user_options = []
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
def run(self):
|
|
|
|
import sys,subprocess
|
2012-10-20 23:39:15 +08:00
|
|
|
PPATH=[x for x in os.environ.get("PYTHONPATH", "").split(":") if x]
|
|
|
|
PPATH.insert(0, os.getcwd())
|
|
|
|
os.environ["PYTHONPATH"] = ":".join(PPATH)
|
2012-10-20 23:32:03 +08:00
|
|
|
errno = subprocess.call([sys.executable, 'pytest.py'])
|
|
|
|
raise SystemExit(errno)
|
|
|
|
|
2008-08-18 23:08:39 +08:00
|
|
|
if __name__ == '__main__':
|
2012-10-01 16:31:04 +08:00
|
|
|
main()
|