Updated CI to expose a bug in bilby_result for python2.7, then fixed it
This MR updates the CI to run a few more basic checks, including --help
on all installed scripts.
This exposed a bug in bilby_result
for python2.7 where print
is used as an attribute name (see pipeline #80948). It is forbidden to use reserved keywords as attribute names (in python3, print
is just a builtin function
). So, I renamed that attribute keys
which made sense to me in context.
Edited by Duncan Macleod