You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The CLI executes the complete workflow defined in your scenario file, running all steps in sequence and accumulating results. This automates complex network analysis tasks without manual intervention.
214
281
282
+
### Recommended Workflow
283
+
284
+
1.**Inspect first**: Always use `inspect` to validate and understand your scenario
285
+
2.**Debug issues**: Use detailed inspection to troubleshoot network expansion problems
286
+
3.**Run after validation**: Execute scenarios only after successful inspection
287
+
4.**Iterate**: Use inspection during scenario development to verify changes
288
+
289
+
```bash
290
+
# Development workflow
291
+
python -m ngraph inspect my_scenario.yaml --detail # Validate and debug
292
+
python -m ngraph run my_scenario.yaml --results # Execute after validation
293
+
```
294
+
295
+
### Debugging Scenarios
296
+
297
+
When developing complex scenarios with blueprints and hierarchical structures:
0 commit comments