Skip to content

Commit 2dca951

Browse files
committed
Add setting bundle gemfile to test_app
1 parent 71c9b11 commit 2dca951

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ do a quick one-time creation of a test application and then you can use it to ru
215215
the tests. For example, to run the tests for the core project.
216216
```shell
217217
cd core
218-
bundle exec rake test_app
218+
BUNDLE_GEMFILE=../Gemfile bundle exec rake test_app
219219
bundle exec rspec spec
220220
```
221221

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ prepare_app(){
1212
set_gemfile
1313
bundle update --quiet
1414
echo "Preparing test app..."
15-
bundle exec rake test_app
15+
BUNDLE_GEMFILE=../Gemfile bundle exec rake test_app
1616
}
1717
# Target postgres. Override with: `DB=sqlite bash build.sh`
1818
export DB=${DB:-postgres}

0 commit comments

Comments
 (0)