Closed tobiasmcnulty closed 2 years ago
This adds a simple SubprocessBackend that can be used for executing scripts written in Python and R.
SubprocessBackend
Sample usage for issue #90:
step = Step.objects.get(...) exitcode, stdout, stderr = step.run_script() # now, pass exitcode, stdout, stderr to the template for display
Fixes #119
This adds a simple
SubprocessBackend
that can be used for executing scripts written in Python and R.Sample usage for issue #90:
Fixes #119