-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDEV.txt
More file actions
20 lines (16 loc) · 803 Bytes
/
Copy pathDEV.txt
File metadata and controls
20 lines (16 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
If django-tel comes close to meeting a need of yours but falls short,
please let me know. You can send email about django-tel to
amax@mobilewebup.com. Quality patches are appreciated and accepted,
especially if they include unit tests. Existing unit tests are in
src/tel/tests.py.
Speaking of tests: An easy way to run django-tel's tests is with
nosetests [0]. Before they will run, you will need to set up your
python path, and point to testsettings.py as the Django settings
module. For example, here is how I do it on my local machine:
{{{
export PYTHONPATH=$PWD/src:$HOME/src/Django-1.2/:$PYTHONPATH
export DJANGO_SETTINGS_MODULE=testsettings
}}}
After that, simply executing "nosetests" with no arguments will find
and run all tests.
[0] http://somethingaboutorange.com/mrl/projects/nose/