Skip to content

Commit

Permalink
trying to get lettuce tests to run again
Browse files Browse the repository at this point in the history
  • Loading branch information
stefantesting committed Feb 24, 2011
1 parent 3dcd3a6 commit 1aaa2d4
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bin/run-all-tests.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh
export PYTHONPATH="apps/:"$PYTHONPATH

django-admin.py test --settings=memopol2.testsettings --with-coverage --cover-package=memopol2 --with-xunit --with-xcoverage
django-admin.py harvest --settings=memopol2.testsettings --verbosity=3 -a memopol2.main
pylint --rcfile=.pylintrc memopol2 | tee pylint.out
django-admin.py test --settings=memopol2.testsettings --with-coverage --cover-package=apps --with-xunit --with-xcoverage
django-admin.py harvest --settings=memopol2.testsettings --verbosity=3 -a apps
pylint --rcfile=.pylintrc apps | tee pylint.out
2 changes: 1 addition & 1 deletion memopol2/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@
('votes', '%s/votes' % COUCHDB),
('mps', '%s/mps' % COUCHDB),
('meps', '%s/meps' % COUCHDB),
)
)
1 change: 1 addition & 0 deletions memopol2/templates/404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
404 !
1 change: 1 addition & 0 deletions memopol2/templates/500.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
500 !
2 changes: 2 additions & 0 deletions memopol2/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
from django.contrib import admin
from django.views.static import serve

from django.conf.urls.defaults import *

from meps import views

admin.autodiscover()
Expand Down

0 comments on commit 1aaa2d4

Please sign in to comment.