Lines Matching refs:path
16 this_path = os.path.abspath(os.path.dirname(__file__))
24 nunit_path = os.path.join(this_path, './../lib/resources/tools/nunit3/nunit3-console.exe')
26 def __init__(self, path): argument
28 self.path = path
55 print("Building {0}".format(self.path))
67 result = subprocess.call([self.builder, *params, self.path])
69 print("Building project `{}` failed with error code: {}".format(self.path, result))
88 print('Running ' + self.path)
90 project_file = os.path.split(self.path)[1]
91 output_file = os.path.join(options.results_directory, 'results-{}.xml'.format(project_file))
94 print('Using native dotnet test runner -' + self.path, flush=True)
97 …er", "trx;LogFileName={}".format(output_file), '--configuration', options.configuration, self.path]
158 …print('Suite ' + self.path + (' finished successfully!' if result else ' failed!') + ' in ' + str(…
178 def find_failed_tests(path, files_pattern='*.csproj.xml'): argument
179 test_files = glob.glob(os.path.join(path, files_pattern))
205 def find_rerun_tests(path): argument