mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
Implement the fast draw path for single width characters
This commit is contained in:
parent
63d228f21b
commit
355bfce189
6 changed files with 232 additions and 44 deletions
4
test.py
4
test.py
|
|
@ -86,7 +86,9 @@ def run_cli(suite, verbosity=4):
|
|||
r = unittest.TextTestRunner
|
||||
r.resultclass = unittest.TextTestResult
|
||||
init_env()
|
||||
result = r(verbosity=verbosity).run(suite)
|
||||
runner = r(verbosity=verbosity)
|
||||
runner.tb_locals = True
|
||||
result = runner.run(suite)
|
||||
if not result.wasSuccessful():
|
||||
raise SystemExit(1)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue