From 3f7b1eb84853a2a657f42cf22adf3be07eff5249 Mon Sep 17 00:00:00 2001 From: Steve Losh Date: Tue, 27 Jul 2010 15:12:23 -0400 Subject: [PATCH] django: add pmt --- lib/django.zsh | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/django.zsh b/lib/django.zsh index 14b11f5ce..b72160adc 100644 --- a/lib/django.zsh +++ b/lib/django.zsh @@ -6,6 +6,7 @@ alias pmsdb='python manage.py syncdb' alias pms='python manage.py shell' alias pmsp='python manage.py shell_plus' alias pmlf='python manage.py loaddata fixtures/*' +alias pmt='python -W ignore::DeprecationWarning manage.py test' alias gs='gunicorn_django' alias gk='kill `cat .gunicorn.pid`'