# HG changeset patch # User nanaya # Date 1734279090 -32400 # Node ID e62e57101e4a05a3daff37490636c4177278372e # Parent 062723d1f66cda487fb6a7c07aa5ca298766a08b Remove outdated test script diff -r 062723d1f66c -r e62e57101e4a bin/run_test --- a/bin/run_test Sun Dec 15 22:36:06 2024 +0900 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,28 +0,0 @@ -#!/bin/sh - -set -x - -test true = "$CI" && bi_params="--without development" -bundle install $bi_params - -if ! test -f config/database.yml; then - cat << EOF > config/database.yml -test: - adapter: postgresql - database: zp_test - user: postgres -EOF -fi - -if ! test -f config/local_config.rb; then - # rake requires booting Rails which in turn requires availability of - # local_config. - touch config/local_config.rb - cat << EOF > config/local_config.rb -\$cfg[:standalone] = true -\$cfg[:secret_key] = "$(bundle exec rake secret)" -EOF -fi - -RAILS_ENV=test bundle exec rake db:setup -bundle exec rake