OLD | NEW |
(Empty) | |
| 1 Most of the tests require a local Rietveld server. |
| 2 |
| 3 To set this up: |
| 4 1) Check out a copy of Rietveld: |
| 5 $ svn checkout http://rietveld.googlecode.com/svn/trunk/ rietveld |
| 6 (Use git-svn if you must, but man is it slow.) |
| 7 2) Get the Google App Engine SDK: |
| 8 http://code.google.com/appengine/downloads.html |
| 9 3) To run Rietveld you will need Django 1.0, which is not included |
| 10 with the App Engine SDK. Go to http://www.djangoproject.com/download , |
| 11 download a Django from the 1.0 series (it's in the sidebar on the right), |
| 12 untar it, then |
| 13 $ export PYTHONPATH=`pwd`/Django-1.0.4 |
| 14 4) Run Rietveld: |
| 15 $ /path/to/appengine/sdk/dev_appserver.py /path/to/rietveld |
| 16 (If using one of the App Engine launchers, be sure to use port 8080 |
| 17 for this project.) |
| 18 |
| 19 And then, finally, run the tests. |
| 20 TODO(evan): make the tests easier to run, with a single command. |
OLD | NEW |