/unit_tests/test_issue270.rst
https://bitbucket.org/jpellerin/nose/ · ReStructuredText · 22 lines · 18 code · 4 blank · 0 comment · 0 complexity · 15757afcafdaf7e48eb18335ff66b2e8 MD5 · raw file
- Multiprocess test collection from packages
- ------------------------------------------
- Tests that the multiprocess plugin correctly collects tests from packages
- >>> import os
- >>> from nose.plugins.plugintest import run_buffered as run
- >>> from nose.plugins.multiprocess import MultiProcess
- >>> support = os.path.join(os.path.dirname(__file__), 'support')
- >>> issue270 = os.path.join(support, 'issue270')
- The test package has a package-level fixture, which causes the entire package
- to be dispatched to a multiprocess worker. Tests are still collected and run
- properly.
- >>> argv = [__file__, '--processes=2', issue270]
- >>> run(argv=argv, plugins=[MultiProcess()])
- ..
- ----------------------------------------------------------------------
- Ran 2 tests in ...s
- <BLANKLINE>
- OK