README.txt 600 B

123456789101112131415161718192021222324
  1. ## Running From Source
  2. You will need to setup a virtualenv to run from source and execute the unit tests.
  3. $ virtualenv oo-install
  4. $ source ./oo-install/bin/activate
  5. $ virtualenv --relocatable ./oo-install/
  6. $ python setup.py install
  7. The virtualenv bin directory should now be at the start of your $PATH, and oo-install is ready to use from your shell.
  8. You can exit the virtualenv with:
  9. $ deactivate
  10. ## Testing
  11. Install some testing libraries: (we cannot do this via setuptools due to the version virtualenv bundles)
  12. $ pip install mock nose
  13. Then run the tests with:
  14. $ oo-install/bin/nosetests