mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
c383c5821f
* replace very last cuke with spec * remove cuke support files * remove cucumber gems * remove traces of cucumber * remove no longer required route * forcefully clear parallel_test features task * attempt removal of binstub * attempt to stabilize spec
19 lines
536 B
Bash
Executable File
19 lines
536 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
bundle exec rake db:migrate
|
|
bundle exec rake i18n:js:export openproject:plugins:register_frontend assets:rebuild_manifest assets:clean
|
|
cp -rp config/frontend_assets.manifest.json public/assets/frontend_assets.manifest.json
|
|
|
|
echo ""
|
|
echo ""
|
|
echo "Ready for tests. Run"
|
|
echo " docker-compose exec backend-test bundle exec rspec"
|
|
echo "to start the full suite, or "
|
|
echo " docker-compose exec backend-test bundle exec rspec $tests"
|
|
echo "to run a subset"
|
|
|
|
# Keep this container online
|
|
while true; do sleep 1000; done;
|