You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setup.py is used to compile, build and install the final version of kerrpy.
setup_test.pyis used to produce a debuggable and traceable (and slower) version of kerrpy that is used to run the test suite and debug.
The ideal situation is that the behaviour of setup_test.py is activated as a flag of setup.py instead of having two scripts. In order to do that one has to activate the extra compiler options, macros and directives in case the specific testing/debug flag is passed to setup.py, ideally without duplicating code.
The text was updated successfully, but these errors were encountered:
We have now two setup scripts:
setup.py
is used to compile, build and install the final version of kerrpy.setup_test.py
is used to produce a debuggable and traceable (and slower) version of kerrpy that is used to run the test suite and debug.The ideal situation is that the behaviour of
setup_test.py
is activated as a flag ofsetup.py
instead of having two scripts. In order to do that one has to activate the extra compiler options, macros and directives in case the specific testing/debug flag is passed tosetup.py
, ideally without duplicating code.The text was updated successfully, but these errors were encountered: