1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00
lvgl/tests/test.py
2021-06-18 14:13:41 +02:00

11 lines
249 B
Python

import os
import glob
def prepare():
os.system("rm src/test_*_Runner.c")
os.system("rm src/*.o")
files = glob.glob("./src/test_*.c")
for f in files:
os.system("ruby unity/generate_test_runner.rb " + f + " config.yml")
return files