##// END OF EJS Templates
wait for empty queues as well as tasks...
wait for empty queues as well as tasks in parallel test `_wait_for_idle` work submitted via DirectView was ignored in `_wait_for_idle`, so if such a task is outstanding, the condition can return prematurely. should close #4502

File last commit:

r13387:3b4dba0a
r13530:665aadda
Show More
setupegg.py
7 lines | 217 B | text/x-python | PythonLexer
#!/usr/bin/env python
"""Wrapper to run setup.py using setuptools."""
# Import setuptools and call the actual setup
import setuptools
with open('setup.py', 'rb') as f:
exec(compile(f.read(), 'setup.py', 'exec'))