Skip to content

Commit f2f2903

Browse files
committed
Don't 'appraisal install' before running test suite locally
This ends up being really annoying each time. `appraisal install` is already in the `setup` script so that should be the preferred method of installing all dependencies.
1 parent c89cda8 commit f2f2903

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Rakefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@ begin
88
rescue LoadError
99
task :spec do
1010
appraisal = SuperDiff::CurrentBundle.instance.latest_appraisal
11-
exec "appraisal install && appraisal #{appraisal.name} rake spec --trace"
11+
exec "appraisal #{appraisal.name} rake spec --trace"
1212
end
1313
end
1414

1515
task :default do
1616
if SuperDiff::CurrentBundle.instance.appraisal_in_use?
1717
sh "rake spec"
1818
elsif ENV["CI"]
19-
exec "appraisal install && appraisal rake --trace"
19+
exec "appraisal rake --trace"
2020
else
2121
appraisal = SuperDiff::CurrentBundle.instance.latest_appraisal
22-
exec "appraisal install && appraisal #{appraisal.name} rake --trace"
22+
exec "appraisal #{appraisal.name} rake --trace"
2323
end
2424
end

bin/ci/install

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
#!/bin/sh
22

3+
echo $PWD
34
bundle config set path $PWD/vendor/bundle
45
bundle install --jobs=3 --retry=3

0 commit comments

Comments
 (0)