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()