I'm using Pyramid framework for my application. I'm writing unit tests (tests.py file), where I want to:
get the actual request instead of dummyRequest and
also want to get the values of variables defined in config (development.ini) file.
I have gone through How to get an actual Pyramid request when unit testing question as well, but didn't get much from it.
Let me know how above can be achieved.