Reputation: 3291
I am using Pycharm as IDE for one of my projects. The framework of choice is Pyramid and here comes my issue. I am not able to debug the request using PyCharm even though I start the application in debug mode. When a request is made from the browser the breakpoints from the views.py are not hit this does not apply for the breakpoints set in the application start-up (init.py and initializedb.py). Please note that I am new on Pyramid. Any idea how to solve this would be much appreciated.
EDIT I apologize for not mentioning the details. I am using PyCharm 3.02 Pro and Pyramid 1.4.5. I am using the scaffolding provided by PyCharm.
Upvotes: 1
Views: 447
Reputation: 3291
Finally I have figured it out. It was my fault. The project gets deployed as an egg so that's where I was suppose to place my breakpoints. Thanks a lot for your time and consideration.
Upvotes: 3