Commit 027e8b0d authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 1d706b24
...@@ -30,12 +30,15 @@ from erp5.util.taskdistribution import TaskDistributor ...@@ -30,12 +30,15 @@ from erp5.util.taskdistribution import TaskDistributor
from subprocess import Popen, PIPE from subprocess import Popen, PIPE
from time import time, strftime, gmtime from time import time, strftime, gmtime
import os, sys, threading, argparse, logging, traceback, re import os, sys, threading, argparse, logging, traceback, re
import six
# loadNXDTestFile loads .nxdtest file located @path. # loadNXDTestFile loads .nxdtest file located @path.
def loadNXDTestFile(path): # -> TestEnv def loadNXDTestFile(path): # -> TestEnv
t = TestEnv() t = TestEnv()
g = {'TestCase': t.TestCase} # TODO + all other public TestEnv methods g = {'TestCase': t.TestCase} # TODO + all other public TestEnv methods
six.exec_(code, g) with open(path, "r") as f:
src = f.read()
six.exec_(src, g)
return t return t
# TestCase defines one test case to run. # TestCase defines one test case to run.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment