diff options
author | Rémy Coutable <remy@rymai.me> | 2017-05-03 12:09:47 +0200 |
---|---|---|
committer | Rémy Coutable <remy@rymai.me> | 2017-05-03 12:09:47 +0200 |
commit | ba446b86b00f3493a446e4167f850b4f44c70805 (patch) | |
tree | c9c155f3b52396b1c83a79b1fabc24d3ef61f991 /doc/development | |
parent | d811004d023cee1ae5cbcb5792faca34b30336a3 (diff) | |
download | gitlab-ce-ba446b86b00f3493a446e4167f850b4f44c70805.tar.gz |
Elaborate on the usage of Springdocs/31692-elaborate-on-spring-instructions
Signed-off-by: Rémy Coutable <remy@rymai.me>
Diffstat (limited to 'doc/development')
-rw-r--r-- | doc/development/rake_tasks.md | 22 |
1 files changed, 16 insertions, 6 deletions
diff --git a/doc/development/rake_tasks.md b/doc/development/rake_tasks.md index ec9e4dcc59d..fdaaa65fa28 100644 --- a/doc/development/rake_tasks.md +++ b/doc/development/rake_tasks.md @@ -31,16 +31,26 @@ files it can find, also the ones in `/tmp` To run a single test file you can use: -- `bundle exec rspec spec/controllers/commit_controller_spec.rb` for a rspec test -- `bundle exec spinach features/project/issues/milestones.feature` for a spinach test +- `bin/rspec spec/controllers/commit_controller_spec.rb` for a rspec test +- `bin/spinach features/project/issues/milestones.feature` for a spinach test To run several tests inside one directory: -- `bundle exec rspec spec/requests/api/` for the rspec tests if you want to test API only -- `bundle exec spinach features/profile/` for the spinach tests if you want to test only profile pages +- `bin/rspec spec/requests/api/` for the rspec tests if you want to test API only +- `bin/spinach features/profile/` for the spinach tests if you want to test only profile pages -If you want to use [Spring](https://github.com/rails/spring) set -`ENABLE_SPRING=1` in your environment. +### Speed-up tests, rake tasks, and migrations + +[Spring](https://github.com/rails/spring) is a Rails application preloader. It +speeds up development by keeping your application running in the background so +you don't need to boot it every time you run a test, rake task or migration. + +If you want to use it, you'll need to export the `ENABLE_SPRING` environment +variable to `1`: + +``` +export ENABLE_SPRING=1 +``` ## Compile Frontend Assets |