Hello, I'm trying to check can-i-deploy between tw...
# general
t
Hello, I'm trying to check can-i-deploy between two services fraud-backoffice (current branch) and finance-api (latest from master branch). However, it's not working as expected. I'm only interested in verification result between two mentioned services, but there are other services involve. This is the command I use; pact-broker can-i-deploy --pacticipant fraud-backoffice "${PACTICIPANT_VERSION}" \ --pacticipant finance-api --latest master --retry-while-unknown=20 --retry-interval=15 I follow the document here https://github.com/pact-foundation/pact_broker-client/blob/master/README.md#can-i-deploy it should check verification result from finance-api provider only if I understand it correctly or am I just misusing the command somehow?
m
You need to use the ignore flag. It doesn't work the way you are trying to use it. It will always check all dependencies of the given pacticipant
t
I see, thanks!