-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
44 lines (33 loc) · 1.24 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
from setuptools import setup
setup(
name="nosepipe",
version="0.9",
download_url = "http://pypi.python.org/pypi/nosepipe/",
description = "Plugin for the nose testing framework for running tests in "
"a subprocess",
author = "John J. Lee, Dan McCombs, Vadim Markovtsev",
author_email = "dmccombs@dyn.com",
license = "BSD",
platforms = ["any"],
install_requires = ["nose>=0.1.0"],
tests_require = ["django-nose"],
url = "http://github.com/dmccombs/nosepipe/",
long_description = """\
Plugin for the nose testing framework for running tests in a subprocess.
Use ``nosetests --with-process-isolation`` to enable the plugin. When enabled,
each test is run in a separate process.
Additionally add the ``--with-process-isolation-individual`` option and decorate
top level test functions or classes with ``@nosepipe.isolate`` to only run those
tests in isolation.
Supports Python 2 and 3.
""",
py_modules = ["nosepipe"],
entry_points = {
"nose.plugins.0.10": [
"process-isolation = nosepipe:ProcessIsolationPlugin",
"process-isolation-reporter = "
"nosepipe:ProcessIsolationReporterPlugin"]
},
zip_safe = True,
)