Now uses the reusable Ragger tests workflows

This commit is contained in:
Alexandre Paillier
2023-03-02 15:14:16 +01:00
parent faed963e3a
commit be3aa9f1ba
2 changed files with 14 additions and 106 deletions

View File

@@ -18,7 +18,7 @@ bip32 = [
def input_files() -> List[str]:
files = []
for file in os.scandir("./eip712/input_files"):
for file in os.scandir("%s/eip712/input_files" % (os.path.dirname(__file__))):
if fnmatch.fnmatch(file, "*-data.json"):
files.append(file.path)
return sorted(files)