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
Since ci-queue cannot by necessity respect before(:all) hooks, I have a workaround to run the required setup in my CI script. However, I'd like to avoid running it if the queue is empty (i.e. other workers have already exhausted it), so it would be cool to have something like:
unless`rspec-queue --query queue-size`.chomp! == '0'# do expensive setupend
If there's already a straightforward programmatic way to do this, I'm happy to use that instead of adding a feature!
The text was updated successfully, but these errors were encountered:
Since ci-queue cannot by necessity respect
before(:all)
hooks, I have a workaround to run the required setup in my CI script. However, I'd like to avoid running it if the queue is empty (i.e. other workers have already exhausted it), so it would be cool to have something like:If there's already a straightforward programmatic way to do this, I'm happy to use that instead of adding a feature!
The text was updated successfully, but these errors were encountered: