@when("we run some code")
def step_impl(context):
context.run_id = run_script_and_get_id("examples/example_script2.py")
@when("we run some code as a module")
def step_impl(context):
output = subprocess.check_output([sys.executable, "-m", "recipy", "examples/example_script3.py", "test.npy"], env={"PYTHONPATH": os.path.abspath("../")}).decode("utf-8")