-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix the ds list script so it works with the new gbasf2 version #210
Conversation
Previously we only raised an exception for returncodes of 3 and otherwise accepted the output. Any other returncodes should in theory not be possible but better be defensive and fail early with a proper error message instead of accepting garbage output and failing later with a confusing error message.
LGTM 👍. Just changelog missing, that could be combined with the changelog entry for #209 into a single bulletpoint |
Codecov ReportAttention:
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #210 +/- ##
==========================================
+ Coverage 60.51% 60.80% +0.28%
==========================================
Files 23 23
Lines 1593 1597 +4
==========================================
+ Hits 964 971 +7
+ Misses 629 626 -3
Flags with carried forward coverage won't be shown. Click here to find out more.
☔ View full report in Codecov by Sentry. |
With the new
gbasf2
version,userCreds
changed path andinitializeCS()
is not automatic anymore. This PR fix the crash happening whenb2luigi
tries to download the jobs output.Same solution as in #209 .