I\'ve been getting a
No tests were found
error in Pycharm and I can\'t figure out why I\'m getting it... this is what I have f
Adding another answer in the hopes that it helps someone down the road. I've been fighting this problem and just figured out the answer (I think). I originally deleted the standard Django file tests.py out of my application folder. I also created a subdirectory of my project called tests, which contains separate test scripts. In this situation, Pycharm failed to find the tests. I corrected this simply by creating an empty file called tests.py in my application folder.
So:
Here's a picture of the directory structure that's working for me: