summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Cramer <dcramer@gmail.com>2012-12-26 13:53:51 -0800
committerDavid Cramer <dcramer@gmail.com>2012-12-26 13:53:51 -0800
commit79433a6f717f0ddbf2742f9ad7fdb7804a5321ca (patch)
tree29ad3a90fb68ef3e4c98919a8cdc7b3d0c9b7c62
parentce4d6ef638c2e2795596a175b72203f213e5384b (diff)
downloadraven-79433a6f717f0ddbf2742f9ad7fdb7804a5321ca.tar.gz
Improve text on contributing page
-rw-r--r--docs/contributing/index.rst9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/contributing/index.rst b/docs/contributing/index.rst
index 18cd181..560142d 100644
--- a/docs/contributing/index.rst
+++ b/docs/contributing/index.rst
@@ -10,7 +10,7 @@ Setting up an Environment
-------------------------
Sentry is designed to run off of setuptools with minimal work. Because of this
-setting up a development environment for Sentry requires only a few steps.
+setting up a development environment requires only a few steps.
The first thing you're going to want to do, is build a virtualenv and install
any base dependancies.
@@ -21,12 +21,13 @@ any base dependancies.
source ~/.virtualenvs/raven/bin/activate
make
+That's it :)
+
Running the Test Suite
----------------------
-The test suite is also powered off of setuptools, and can be run in two fashions. The
-easiest is to simply use setuptools and it's ``test`` command. This will handle installing
-any dependancies you're missing automatically.
+The test suite is also powered off of py.test, and can be run in a number of ways. Usually though,
+you'll just want to use our helper method to make things easy:
::