1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 07:28:10 +00:00

travis: run all python scripts from top-level directory

This commit is contained in:
matejcik 2019-03-21 12:22:55 +01:00
parent 4c56cb6ea1
commit 617f8fee62
2 changed files with 5 additions and 2 deletions

View File

@ -25,7 +25,7 @@ script:
- jsonlint defs/*/*.json
- python tools/cointool.py check
- python tools/support.py check --ignore-missing
- cd protob && python check.py
- python protob/check.py
- python protob/graph.py protob/*.proto
notifications:

View File

@ -1,10 +1,13 @@
#!/usr/bin/env python3
from glob import glob
import os
import sys
error = False
for fn in sorted(glob("messages-*.proto")):
MYDIR = os.path.dirname(__file__)
for fn in sorted(glob(os.path.join(MYDIR, "messages-*.proto"))):
with open(fn, "rt") as f:
prefix = fn.split(".")[0][9:].capitalize()
if prefix in ["Bitcoin", "Bootloader", "Common", "Crypto", "Management"]: