Hi, Can someone help me override Settings context?
Usecase:
I have 3 profiles:
1. local_db [Connects to self hosted postgres database]
2. dev [Dev prefect api]
3. prod [Prod prefect api]
In addition to that, I want a unit test profile which connects to a dockerized postgres. I do not want this to be a profile as the tests will be run on multiple machines - hence the need for a fresh Settings context. We cannot use the test harness as we need to run database queries.
How do I initialize my own settings context without creating new profile?