So, I have a Django-REST Framework project and one day it simply ceased being able to run the tests within PyCharm.
From the command line I can run them both using paver
or the manage.py
directly.
There was a time when that would happen when we didn't import the class' superclass at the top of the file, but that's not the case.
We have a virtualenv
set locally and run the server from a vagrant box. I assured the virtual environment is loaded and that the project's Interpreter is using the afore mentioned virtual env.
No clue on what's the matter.
I had the same problem but my solution was different.
When I tried to run a test from PyCharm, the target path looked like this:
But since ATest was a class inside a_model.py, the targ path should actually be:
Changing the target in the test configuration worked.
Given all the others paths were already covered:
The only thing that occurred to me was do run the following command within the vurtal env:
pip install -r requirements.txt
And it worked! In the end, someone had updated the requirements which weren't being met by my current virtual env. Screwing up with the paths/imports within PyCharm.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With