What's the URL of the page containing the problem?
http://www.reviewboard.org/docs/codebase/dev/getting-started/
Describe the problem and any recommendations below.
In the "Running Unit Tests" section the documentation says:
"For Review Board, type:
$ cd reviewboard
$ ./manage.py test"
However, manage.py does not exist in reviewboard/, but the next one down (reviewboard/reviewboard/.) After changing directories to the bottommost reviewboard and running it (./manage.py test), it failed with the error:
"ValueError: Working directory reviewboard not found, or not a directory"
To fix this, I changed directories up to the topmost reviewboard and ran:
"./reviewboard/manage.py test"
Please provide any additional information below.