diff options
author | Colby Swandale <me@colby.fyi> | 2019-11-30 01:02:01 +1100 |
---|---|---|
committer | Colby Swandale <me@colby.fyi> | 2019-11-30 01:02:01 +1100 |
commit | 0e80c577ac2b8d02334c6e9864d2301e8acd9f17 (patch) | |
tree | 5ae3280bbef72baf6e9ef0f70691dd994c05822a | |
parent | 8c78566bf25917bd77c5183604c5d34c175eb987 (diff) | |
download | bundler-0e80c577ac2b8d02334c6e9864d2301e8acd9f17.tar.gz |
document running tests in parallel inside a dev environment
-rw-r--r-- | doc/development/SETUP.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/development/SETUP.md b/doc/development/SETUP.md index 80abe4cc6b..3731738289 100644 --- a/doc/development/SETUP.md +++ b/doc/development/SETUP.md @@ -24,6 +24,10 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we $ bin/rake spec +6. Optionally, you can run the test suite in parallel: + + $ bin/parallel_rspec 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): $ alias dbundle='/path/to/bundler/repo/bin/bundle' |