Is it possible to pass command line arguments to Django\'s manage.py script, specifically for unit tests? i.e. if I do something like
manage.py
manage.py test
i'm using environment variables workaround in my project (works in unix-like shells only)
berry$ myvar=myval ./manage.py test
in your module read this value using
os.environ.get('myvar')