本文整理汇总了Python中utilstest.UtilsTest.forceBuild方法的典型用法代码示例。如果您正苦于以下问题:Python UtilsTest.forceBuild方法的具体用法?Python UtilsTest.forceBuild怎么用?Python UtilsTest.forceBuild使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类utilstest.UtilsTest
的用法示例。
在下文中一共展示了UtilsTest.forceBuild方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testkcd
# 需要导入模块: from utilstest import UtilsTest [as 别名]
# 或者: from utilstest.UtilsTest import forceBuild [as 别名]
logging.basicConfig(level=logging.DEBUG)
sys.argv.pop(sys.argv.index(opts))
elif opts in ["-i", "--info"]:
logging.basicConfig(level=logging.INFO)
sys.argv.pop(sys.argv.index(opts))
elif opts in ["-f", "--force"]:
force_build = True
sys.argv.pop(sys.argv.index(opts))
try:
logger.debug("Tests loaded from file: %s" % __file__)
except:
__file__ = os.getcwd()
from utilstest import UtilsTest
if force_build:
UtilsTest.forceBuild()
import fabio
from fabio.kcdimage import kcdimage
from fabio.edfimage import edfimage
from fabio.openimage import openimage
class testkcd(unittest.TestCase):
"""basic test"""
kcdfilename = 'i01f0001.kcd'
edffilename = 'i01f0001.edf'
results = """i01f0001.kcd 625 576 96 66814.0 195.3862972 243.58150990245315"""
def setUp(self):