summaryrefslogtreecommitdiff
path: root/unit_tests
diff options
context:
space:
mode:
authorjpellerin <devnull@localhost>2009-05-14 21:03:02 -0400
committerjpellerin <devnull@localhost>2009-05-14 21:03:02 -0400
commit4496595f588fd1d945d39a67cd1416c2c0114fdf (patch)
tree6db1f6a4fffe446ee99c3df6b421b12dbe3536e2 /unit_tests
parente6191c45ba458b485fc1150fb36bbf78161fe88d (diff)
downloadnose-4496595f588fd1d945d39a67cd1416c2c0114fdf.tar.gz
Made Config pickle-friendly to enable mp on windows
Diffstat (limited to 'unit_tests')
-rw-r--r--unit_tests/test_config.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/unit_tests/test_config.py b/unit_tests/test_config.py
index 0263269..4c89526 100644
--- a/unit_tests/test_config.py
+++ b/unit_tests/test_config.py
@@ -89,7 +89,9 @@ class TestNoseConfig(unittest.TestCase):
def test_pickle_configured(self):
c = nose.config.Config(plugins=DefaultPluginManager())
c.configure(['--with-doctest', '--with-coverage', '--with-profile',
- '--with-id', '--attr=A', '--collect', '--all'])
+ '--with-id', '--attr=A', '--collect', '--all',
+ '--with-isolation', '-d', '--with-xunit', '--processes=2',
+ '--pdb'])
cp = pickle.dumps(c)