We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71c9b11 commit 2dca951Copy full SHA for 2dca951
README.md
@@ -215,7 +215,7 @@ do a quick one-time creation of a test application and then you can use it to ru
215
the tests. For example, to run the tests for the core project.
216
```shell
217
cd core
218
-bundle exec rake test_app
+BUNDLE_GEMFILE=../Gemfile bundle exec rake test_app
219
bundle exec rspec spec
220
```
221
build.sh
@@ -12,7 +12,7 @@ prepare_app(){
12
set_gemfile
13
bundle update --quiet
14
echo "Preparing test app..."
15
- bundle exec rake test_app
+ BUNDLE_GEMFILE=../Gemfile bundle exec rake test_app
16
}
17
# Target postgres. Override with: `DB=sqlite bash build.sh`
18
export DB=${DB:-postgres}
0 commit comments