3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-07-30 09:53:19 +00:00

Add color handling via click.style and click.echo

Signed-off-by: Claire Xenia Wolf <claire@clairexen.net>
This commit is contained in:
Claire Xenia Wolf 2022-10-31 20:29:32 +01:00
parent 54cb030738
commit 003ccf7197
5 changed files with 40 additions and 28 deletions

View file

@ -16,7 +16,7 @@
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
#
import re, os, getopt
import re, os, getopt, click
from sby_core import SbyProc
def run(mode, task, engine_idx, engine):
@ -83,7 +83,7 @@ def run(mode, task, engine_idx, engine):
task.error(f"engine_{engine_idx}: Could not determine engine status.")
task.update_status(proc_status)
task.log(f"engine_{engine_idx}: Status returned by engine: {proc_status}")
task.log(f"{click.style(f'engine_{engine_idx}', fg='magenta')}: Status returned by engine: {proc_status}")
task.summary.append(f"""engine_{engine_idx} ({" ".join(engine)}) returned {proc_status}""")
task.terminate()