用于测试游戏的Python脚本

时间:2014-10-01 00:49:59

标签: python testing reversi

我写了一个名为reversi.py的游戏,我想写一个脚本来帮助测试。该游戏基于AI,需要花费大量时间才能运行。我希望编写一个脚本来运行游戏并将其结果输出到一个文件中,这样我就可以运行游戏x次,同时我去做其他事情并回到它。我一直试图从脚本文件中调用游戏。以下是我到目前为止的情况:

from games import *
from reversi import *

def main():

    f = open('Reversi Test', 'w')


if __name__ == '__main__':
    main()

提前致谢!

1 个答案:

答案 0 :(得分:0)

如果程序写入标准输出,则只需将其重定向到其他文件即可。类似于以下内容

import sys

from games import *
from reversi import *

def main():

    N = 100
    for i in range(N):
       sys.stdout = open('Reversi_Test_' + str(i), 'w')
       game() # call your method here
       sys.stdout.close()

if __name__ == '__main__':
    main()

您还可以使用with声明:

from future import with_statement
import sys

from games import *
from reversi import *

def main():

    N = 100
    for i in range(N):
       with open('Reversi_Test_' + str(i), 'w') as sys.stdout:
           game() # call your method here

if __name__ == '__main__':
    main()