We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7e71da commit 24b6369Copy full SHA for 24b6369
wpiformat/test/tasktest.py
@@ -79,6 +79,8 @@ def run(self, output_type):
79
80
for i in range(len(self.inputs)):
81
if self.task.should_process_file(config_file, self.inputs[i][0]):
82
+ print("Running test {}...".format(i))
83
+
84
if output_type == OutputType.FILE:
85
output, file_changed, success = self.task.run_pipeline(
86
config_file, self.inputs[i][0], self.inputs[i][1])
@@ -91,7 +93,6 @@ def run(self, output_type):
91
93
output = sys.stdout.read()
92
94
sys.stdout = saved_stdout
95
- print("Running test {}...".format(i))
96
assert output == self.outputs[i][0]
97
assert file_changed == self.outputs[i][1]
98
assert success == self.outputs[i][2]
0 commit comments