summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-12-02 15:04:34 +0000
committerDavid Rodríguez <deivid.rodriguez@riseup.net>2019-12-13 20:07:20 +0100
commit4d77dca72a9a7208aef01c1e0fcd0dcd71195c65 (patch)
tree78361def16f9007aebdf87be45a7578c91287e3c
parent2dadf376ee8d23a3109a947329d46b92a3b72a53 (diff)
downloadbundler-4d77dca72a9a7208aef01c1e0fcd0dcd71195c65.tar.gz
Merge #7462
7462: Document running tests in parallel inside a dev environment r=deivid-rodriguez a=colby-swandale ### What was the end-user problem that led to this PR? We do not have any documentation for running the test suite in parallel. Developers working on Bundler may be unaware that the test suite can be executed in parallel to help speed up the time needed to run tests. ### What is your fix for the problem, implemented in this PR? Document how to run the parallel Bundler test suit in the Contributing docs. Co-authored-by: Colby Swandale <me@colby.fyi> (cherry picked from commit fe91eb21cfc07e4fb5710126302d58b433c6d734)
-rw-r--r--doc/development/SETUP.md6
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/development/SETUP.md b/doc/development/SETUP.md
index 80abe4cc6b..6af7c07145 100644
--- a/doc/development/SETUP.md
+++ b/doc/development/SETUP.md
@@ -24,7 +24,11 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we
$ bin/rake spec
-6. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias ([follow these instructions](https://www.moncefbelyamani.com/create-aliases-in-bash-profile-to-assign-shortcuts-for-common-terminal-commands/) for adding aliases to your `~/.bashrc` profile):
+6. Optionally, you can run the test suite in parallel:
+
+ $ bin/parallel_rspec spec
+
+7. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias ([follow these instructions](https://www.moncefbelyamani.com/create-aliases-in-bash-profile-to-assign-shortcuts-for-common-terminal-commands/) for adding aliases to your `~/.bashrc` profile):
$ alias dbundle='/path/to/bundler/repo/bin/bundle'