From ee0489b8d64e9d62ea6f2a9a8f06b44bbd4e774f Mon Sep 17 00:00:00 2001 From: blueloveTH Date: Sat, 15 Apr 2023 16:36:26 +0800 Subject: [PATCH] up --- README.md | 2 +- scripts/run_tests.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 90228e06..ce594cd8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ GitHub release

-PocketPy is a lightweight(~6000 LOC) Python interpreter for game engines/apps. +PocketPy is a lightweight(~8000 LOC) Python interpreter for game engines/apps. --- diff --git a/scripts/run_tests.py b/scripts/run_tests.py index f444f235..f533282c 100644 --- a/scripts/run_tests.py +++ b/scripts/run_tests.py @@ -20,7 +20,9 @@ def test_dir(path): if path == 'benchmarks/': _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() if not test_file(filepath): exit(1) _2 = time.time()