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
#!/bin/bash# Test fixture command - uses real duct execution# Use a command that runs long enough to generate usage data
duct -p .duct/run --sample-interval 0.05 --report-interval 0.1 --clobber -- bash -c 'for i in {1..30}; do echo "Step $i"; sleep 0.2; done'exit 0
Entry: example-2
#!/bin/bash# Test fixture command - uses real duct execution# Use a command that runs long enough to generate usage data
duct -p .duct/run --sample-interval 0.05 --report-interval 0.1 --clobber -- bash -c 'for i in {1..20}; do echo "Processing $i"; sleep 0.3; done'exit 0