blueloveTH 2 lat temu
rodzic
commit
ee0489b8d6
2 zmienionych plików z 4 dodań i 2 usunięć
  1. 1 1
      README.md
  2. 3 1
      scripts/run_tests.py

+ 1 - 1
README.md

@@ -8,7 +8,7 @@
 <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>
 </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.
 
 
 ---

+ 3 - 1
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()