mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
13 lines
168 B
Bash
Executable File
13 lines
168 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
echo "--- Bundling"
|
|
bundle install
|
|
|
|
echo "--- Preparing test database"
|
|
bundle exec rake db:test:prepare
|
|
|
|
echo "--- Running tests"
|
|
bundle exec rake
|