summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBundlerbot <bot@bundler.io>2019-12-02 15:04:34 +0000
committerBundlerbot <bot@bundler.io>2019-12-02 15:04:34 +0000
commitfe91eb21cfc07e4fb5710126302d58b433c6d734 (patch)
treeb003598e6c506677cb93bce4e28bb6d90ea83f41
parentf6b970d0b8347681fdcf804a837876798a9230ef (diff)
parentde7b1dd56bcad0f9e7e7381eec9ffcb2ac6f6e0d (diff)
downloadbundler-fe91eb21cfc07e4fb5710126302d58b433c6d734.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>
-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'