Fixed 'All results up-to-date" not showing when starting with all up-to-date.
This commit is contained in:
parent
87341762a5
commit
d488d2f952
2 changed files with 6 additions and 6 deletions
4
BUGS
4
BUGS
|
|
@ -1,7 +1,5 @@
|
||||||
Current
|
Current
|
||||||
- Within the sandbox sudo is not working for tools.
|
- Within the sandbox sudo is not working for tools.
|
||||||
- If vigil is started with eveything up-to-date the up-to-date message never
|
|
||||||
appears.
|
|
||||||
|
|
||||||
|
|
||||||
Current (tool related)
|
Current (tool related)
|
||||||
|
|
@ -212,6 +210,8 @@ Fixed
|
||||||
e.g. vigil.py pylint, BUGS metadata, BUGS _pygments
|
e.g. vigil.py pylint, BUGS metadata, BUGS _pygments
|
||||||
- Tracebacks occur if you pause during early startup.
|
- Tracebacks occur if you pause during early startup.
|
||||||
- Scrolling in the help screen doesn't work with the arrow keys.
|
- Scrolling in the help screen doesn't work with the arrow keys.
|
||||||
|
- If vigil is started with eveything up-to-date the up-to-date message never
|
||||||
|
appears.
|
||||||
|
|
||||||
|
|
||||||
Won't fix
|
Won't fix
|
||||||
|
|
|
||||||
8
vigil
8
vigil
|
|
@ -889,15 +889,15 @@ class Runner:
|
||||||
self.result = summary.get_closest_placeholder()
|
self.result = summary.get_closest_placeholder()
|
||||||
except StopIteration:
|
except StopIteration:
|
||||||
self.result = None
|
self.result = None
|
||||||
|
if summary.result_total == summary.completed_total:
|
||||||
|
log.log_message("All results are up to date.")
|
||||||
|
if self.is_being_tested:
|
||||||
|
os.kill(os.getpid(), signal.SIGINT)
|
||||||
break
|
break
|
||||||
with contextlib.suppress(ValueError): # Process was terminated
|
with contextlib.suppress(ValueError): # Process was terminated
|
||||||
self.result.run(log, appearance_changed_event, self.worker,
|
self.result.run(log, appearance_changed_event, self.worker,
|
||||||
self)
|
self)
|
||||||
summary.completed_total += 1
|
summary.completed_total += 1
|
||||||
if summary.result_total == summary.completed_total:
|
|
||||||
log.log_message("All results are up to date.")
|
|
||||||
if self.is_being_tested:
|
|
||||||
os.kill(os.getpid(), signal.SIGINT)
|
|
||||||
jobs_added_event.clear()
|
jobs_added_event.clear()
|
||||||
|
|
||||||
def pause(self):
|
def pause(self):
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue