The .pyc files that python generates can be problematic if we move
modules around; teuthology processes end up picking up the old .pyc
files instead of finding the new .py files
Signed-off-by: Zack Cerza <zack@redhat.com>
# Don't patch subprocess to avoid http://tracker.ceph.com/issues/14990
subprocess=False,
)
+import sys
+
+# Don't write pyc files
+sys.dont_write_bytecode = True
+
from .orchestra import monkey
monkey.patch_all()
import logging
import os
-import sys
__version__ = '0.1.0'