From a2238833ec854c5caf05222b29919e6dd89a8427 Mon Sep 17 00:00:00 2001 From: Bill Fraser Date: Fri, 20 Dec 2024 14:00:01 -0800 Subject: [PATCH] enable all features when testing in update_spec.py --- update_spec.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_spec.py b/update_spec.py index d25e975..e5280a3 100755 --- a/update_spec.py +++ b/update_spec.py @@ -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.")