Relative path to rspec_configuration

pull/7225/head
Javier Torres 9 years ago
parent ce45f52c5f
commit 3a33528cc3

@ -275,17 +275,17 @@ endif
# TODO: Ongoing removal of groups, that's the reason of holes in numbering
check-1:
CHECK_SPEC=1 RAILS_ENV=test bundle exec rspec --require spec/rspec_configuration.rb $(WORKING_SPECS_1)
CHECK_SPEC=1 RAILS_ENV=test bundle exec rspec --require ./spec/rspec_configuration.rb $(WORKING_SPECS_1)
check-2:
CHECK_SPEC=2 RAILS_ENV=test bundle exec rspec --require spec/rspec_configuration.rb $(WORKING_SPECS_2)
CHECK_SPEC=2 RAILS_ENV=test bundle exec rspec --require ./spec/rspec_configuration.rb $(WORKING_SPECS_2)
check-4:
CHECK_SPEC=4 RAILS_ENV=test bundle exec rspec --require spec/rspec_configuration.rb $(WORKING_SPECS_4)
CHECK_SPEC=4 RAILS_ENV=test bundle exec rspec --require ./spec/rspec_configuration.rb $(WORKING_SPECS_4)
check-5:
CHECK_SPEC=5 RAILS_ENV=test bundle exec rspec --require spec/rspec_configuration.rb $(WORKING_SPECS_5)
CHECK_SPEC=5 RAILS_ENV=test bundle exec rspec --require ./spec/rspec_configuration.rb $(WORKING_SPECS_5)
check-7:
CHECK_SPEC=7 RAILS_ENV=test bundle exec rspec --require spec/rspec_configuration.rb $(WORKING_SPECS_7)
CHECK_SPEC=7 RAILS_ENV=test bundle exec rspec --require ./spec/rspec_configuration.rb $(WORKING_SPECS_7)
check-9:
CHECK_SPEC=9 RAILS_ENV=test bundle exec rspec --require spec/rspec_configuration.rb $(WORKING_SPECS_9)
CHECK_SPEC=9 RAILS_ENV=test bundle exec rspec --require ./spec/rspec_configuration.rb $(WORKING_SPECS_9)
check-spec-helper-min:
CHECK_SPEC=50 RAILS_ENV=test bundle exec rspec $(SPEC_HELPER_MIN_SPECS)
check-carto-db-class:

@ -4,7 +4,7 @@ truncate -s 0 specfull.txt
cat Makefile | grep -v 'spec/lib/varnish_spec.rb'| \
grep -v 'spec/models/asset_spec.rb'| \
grep -v 'services/user-mover/spec/user_mover_spec.rb'| \
grep -v 'require spec/rspec_configuration.rb'| \
grep -v 'require ./spec/rspec_configuration.rb'| \
grep 'rb'| sed -e 's/^\s*//' -e '/^$/d' | sed '/^#/ d' | sed 's/\\//' | sed 's/\s.*$//' > temp.txt
i=6001;

Loading…
Cancel
Save