Skip to content

Commit fc9f7e4

Browse files
committed
chore: disable --validate-abi options in test artifacts
1 parent ccde074 commit fc9f7e4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

scripts/refresh_test_artifacts.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,10 @@ def compile_contract(folder: Path) -> None:
3131
str(contract_path),
3232
"--out-dir",
3333
"data",
34+
# testing library does not perform ABI validation
35+
# so ensure compiled contracts also do not, so behaviour matches
36+
"--no-validate-abi-args",
37+
"--no-validate-abi-return",
3438
]
3539
subprocess.run(
3640
compile_cmd,

0 commit comments

Comments
 (0)