mirror of
https://github.com/coleifer/peewee.git
synced 2026-05-06 07:56:41 -04:00
35 lines
1.2 KiB
Python
35 lines
1.2 KiB
Python
import os
|
|
import sys
|
|
import unittest
|
|
|
|
src_dir = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
|
|
sys.path.insert(0, src_dir)
|
|
from tests import *
|
|
|
|
|
|
if __name__ == '__main__':
|
|
print('\x1b[1;31m')
|
|
print(r"""
|
|
______ ______ ______ __ __ ______ ______
|
|
/\ == \ /\ ___\ /\ ___\ /\ \ _ \ \ /\ ___\ /\ ___\
|
|
\ \ _-/ \ \ __\ \ \ __\ \ \ \/ ".\ \ \ \ __\ \ \ __\
|
|
\ \_\ \ \_____\ \ \_____\ \ \__/".~\_\ \ \_____\ \ \_____\
|
|
\/_/ \/_____/ \/_____/ \/_/ \/_/ \/_____/ \/_____/
|
|
""")
|
|
print('\x1b[1;33m')
|
|
print(r"""
|
|
_ _
|
|
_ /\ \ / /\
|
|
/\_\\ \ \ / / \
|
|
/ / / \ \ \ / / /\ \
|
|
/ / / \ \ \ / / /\ \ \
|
|
\ \ \____\ \ \ /_/ / \ \ \
|
|
\ \________\ \ \ \ \ \ \ \
|
|
\/________/\ \ \ \ \ \ \ \
|
|
\ \ \ _ \ \ \___\ \ \
|
|
\ \_\/\_\\ \/____\ \ \
|
|
\/_/\/_/ \_________\/
|
|
""")
|
|
print('\x1b[0m')
|
|
unittest.main(argv=sys.argv)
|