I'm doing small time project development using PyCharm. I use Pycharm for its intellisense features. As I develop each piece of code, I like to run it occasionally to test it. All I need at the point of development is to be able to run the file. However, when I right click and try to run a standalone file, PyCharm tries to be intelligent and shows me options to run my code with unit-tests and other fancy testing gimmicks. I don't want to deploy any testing framework at this point.
All I want is to be able to run any file as it is. But somehow, PyCharm is not allowing me to do that for every file.
I will appreciate if someone can provide a workaround for this. I'm using Python 273