Tagged Questions
2
votes
1answer
268 views
Python module in path: ImportError raised in mako template
There is an ImportError that has the potential to drive me mad. The situation looks like this:
tests/
testWebsite.py
website/
__init__.py
__main__.py
_webtools/
__init__.py
...
2
votes
2answers
1k views
ImportError: cannot import name signals
I'm using Django 1.3.0 with Python 2.7.1.
In every test I write the following imports I get the importError above:
from django.utils import unittest
from django.test.client import Client
The full ...
1
vote
2answers
125 views
Testing for ImportErrors in Python
We're having a real problem with people checking in code that doesn't work because something's been refactored. Admittedly, this is partly because our developers don't really have any good tools for ...
0
votes
1answer
137 views
python: GeoDjango: Eclipse: During Unit Test, raise ImportError, "Could not import settings '%s' (Is it on sys.path? Does it have syntax errors?)
I am creating unit test py file (tests.py) then i received the below error messages.
Could you give me some idea on how to resolve it.
pydev debugger: warning: psyco not available for speedups (the ...