Skip to content

Commit

Permalink
enable all features when testing in update_spec.py
Browse files Browse the repository at this point in the history
  • Loading branch information
wfraser committed Dec 20, 2024
1 parent 9afadeb commit a223883
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion update_spec.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def main():
generate_code(args.spec_path, gen_rust=True, gen_test=False)
update_manifest(args.spec_path)

cargo_result = subprocess.run(["cargo", "test"])
cargo_result = subprocess.run(["cargo", "test", "--all-features"])
if cargo_result.returncode == 0:
print()
print("Tests from the old spec succeeded.")
Expand Down

0 comments on commit a223883

Please sign in to comment.