We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6381383 commit 19429deCopy full SHA for 19429de
gitbugs/bug.py
@@ -145,6 +145,7 @@ def run(self, workdir: str) -> bool:
145
base_image, runner_image, self.__get_diff_path(diff_folder_path)
146
)
147
148
+ # TODO: use a hardcoded path to act
149
executor = TestExecutor(
150
repo_clone=repo,
151
language=bug.language,
@@ -178,8 +179,7 @@ def number_of_tests(runs):
178
179
return (
180
len(runs) > 0
181
and len(failed_tests) == 0
- and number_of_tests(runs)
182
- >= 0 # TODO: check against the number of tests in the bug info
+ and number_of_tests(runs) > 0 # TODO: check against the number of tests in the bug info
183
184
185
def __str__(self) -> str:
0 commit comments