This commit is contained in:
blueloveTH 2023-04-15 16:36:26 +08:00
parent ba13473f11
commit ee0489b8d6
2 changed files with 4 additions and 2 deletions

View File

@ -8,7 +8,7 @@
<img alt="GitHub release" src="https://img.shields.io/github/release/blueloveth/pocketpy.svg"></a> <img alt="GitHub release" src="https://img.shields.io/github/release/blueloveth/pocketpy.svg"></a>
<a title="Pub" href="https://pub.dev/packages/pocketpy" ><img src="https://img.shields.io/pub/v/pocketpy" /></a> <a title="Pub" href="https://pub.dev/packages/pocketpy" ><img src="https://img.shields.io/pub/v/pocketpy" /></a>
</p> </p>
PocketPy is a lightweight(~6000 LOC) Python interpreter for game engines/apps. PocketPy is a lightweight(~8000 LOC) Python interpreter for game engines/apps.
--- ---

View File

@ -20,7 +20,9 @@ def test_dir(path):
if path == 'benchmarks/': if path == 'benchmarks/':
_0 = time.time() _0 = time.time()
if not test_file(filepath, cpython=True): exit(1) if not test_file(filepath, cpython=True):
print('cpython run failed')
continue
_1 = time.time() _1 = time.time()
if not test_file(filepath): exit(1) if not test_file(filepath): exit(1)
_2 = time.time() _2 = time.time()