-
-
Couldn't load subscription status.
- Fork 113
Open
Description
When I use the following in my Rakefile it runs all the tasks listed:
if !ENV["APPRAISAL_INITIALIZED"]
task default: %i[rubocop bundle:audit appraisal]
else
task default: %i[spec]
endWhen I change the order of default dependencies to run appraisal first it runs the suites through Appraisal (successfully) and then exits without running bundle:audit or rubocop tasks.
if !ENV["APPRAISAL_INITIALIZED"]
task default: %i[appraisal rubocop bundle:audit]
else
task default: %i[spec]
endI presume this has something to do with an exit code for the appraisal task but the actual value of $? in the shell in both cases is 0, so I'm not sure where to look.
Metadata
Metadata
Assignees
Labels
No labels