Skip to content

Commit a223883

Browse files
committed
enable all features when testing in update_spec.py
1 parent 9afadeb commit a223883

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

update_spec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def main():
4141
generate_code(args.spec_path, gen_rust=True, gen_test=False)
4242
update_manifest(args.spec_path)
4343

44-
cargo_result = subprocess.run(["cargo", "test"])
44+
cargo_result = subprocess.run(["cargo", "test", "--all-features"])
4545
if cargo_result.returncode == 0:
4646
print()
4747
print("Tests from the old spec succeeded.")

0 commit comments

Comments
 (0)