Add flatc python tests to CI (#7437)

This commit is contained in:
Derek Bailey
2022-08-13 17:30:51 -07:00
committed by GitHub
parent 67c4149588
commit 9dbe819efd
3 changed files with 39 additions and 15 deletions

View File

@@ -1,6 +1,11 @@
#!/usr/bin/env python3
import sys;
from flatc_test import run_all
from flatc_cpp_tests import CppTests
run_all(CppTests)
passing, failing = run_all(CppTests)
if failing > 0:
sys.exit(1)