-
Notifications
You must be signed in to change notification settings - Fork 17
Description
Hello,
I updated recently from 4.0.2 to 4.0.3 and immediately got a failure on CI due to snapshot tests, which I suppose shouldn't be the case for the patch release when nothing changed except the dependency.
Tests started to complain on
au.com.origin.snapshots.exceptions.SnapshotExtensionException: isCI=true & update-snapshot=Optional[false]. Updating snapshots on CI is not allowed
as we specify updateSnapshot=false in our gradle config by default
I think the reason for that is the logic introduced with this change here: 194f256#diff-6c0dc58e8f7f6174ee8150ac6b242ba7bbebecf5ed998c9f786cf056163aa189R122
(#145)
It checks only for the presence of the property, but not the value, whereas before absence and the false value were equal.
Perhaps, you could bring the false value for the old property to be considered as none? That would be much appreciated to allow the smooth migration process.
p.s. the new flow with the property value change seems not obvious to me - would you mind describing the way you see it? As I'm always afraid to accidentally commit the property file after changing it to all. Thank you in advance.