Treat skip tag as pending

This commit is contained in:
Michael Miller 2021-06-11 19:03:16 -06:00
parent 14d45756e9
commit 12cba23fa3
No known key found for this signature in database
GPG key ID: FB9F12F7C646A4AD

View file

@ -43,7 +43,7 @@ module Spectator
# Checks if the node has been marked as pending.
# Pending items should be skipped during execution.
def pending?
tags.has_key?(:pending)
tags.has_key?(:pending) || tags.has_key?(:skip)
end
# Constructs the full name or description of the node.