1 2 3 4 5 6 7 8 9 10 11 12 13
#![cfg(feature = "python")] mod recipe { include!(concat!( env!("CARGO_MANIFEST_DIR"), "/recipes/python/capability-scoped/setup.rs" )); } #[test] fn capability_scoped_python_recipe_runs() { recipe::capability_scoped_python().expect("Python SDK recipe should pass"); }