Conversation
|
Sorry, I couldn't seem to run the tests locally as I kept getting |
|
so this would be as a no-op check during deployment, right? if so, yeah, makes sense. but not crazy about |
|
re local testing, where did it fail w/ that? at |
|
It does this for a while (about 5 times the amount in that screenshot)... and then it does this without stopping... and when I ctrl-c out it does this... Let me know if there is a way I can provide more info. It seems that I'm not giving the right password etc to my local postgres instance, but I'm not sure how to do that in the tests. |
…es required but does execute the changes.



I could have missed something, but I didn't see an option to, without manual intervention, confirm 'no' to some required migration.
We have a situation where evolve is run remotely and we wanted to automatically confirm 'no' if a migration was required to allow the program to not wait forever. Setting
interactive=Falsewould always enact the migration.Is there another way of doing this currently?
The only thing that doesn't quite gel with this addition is that to get the bright red output:
interactive needs to be True with a call like
db.evolve(interactive=True, always_confirm_no=True)and this seems weird if you're using this option for automated operation. Was there a reason you only output "Making updates to database: dbname" if interactive is True?