On Tue, Apr 29, 2014 at 8:02 PM, Nikolaus Rath <nikol...@rath.org> wrote:
>
> Hello,
>
> I've just run the testsuite of hg tip with
>
> ./python -m test -u network,urlfetch -j 8 -G -v

"failfast" (from -G) is passed directly to unittest.TextTestRunner
(see test/support/__init__.py:_run_suite()).  However, that's on a
per-process basis.  When running with -j, each test (test case?) is
run in a separate process.  Unless the processes are sharing some
state (which I didn't see), any existing processes will run to
completion.  Furthermore, I don't know if the "pending" tests are
cleared out under "failfast", but it doesn't look like it.

-eric
_______________________________________________
Python-Dev mailing list
Python-Dev@python.org
https://mail.python.org/mailman/listinfo/python-dev
Unsubscribe: 
https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com

Reply via email to