We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
from HelloWorld import HelloWorld from metaflow import Flow, Metaflow import pytest
@pytest.fixture def get_flow(): # Setup flow = HelloWorld() // OSError: could not get source code
from metaflow import FlowSpec, step
class HelloWorldFlow(FlowSpec): @step def start(self): print("Hello, World!") self.next(self.end)
@step def end(self): print("Flow completed.")
if name == 'main': HelloWorldFlow()
The text was updated successfully, but these errors were encountered:
@iamdansari we have a new API implementation landing soon that should help with this use case.
Sorry, something went wrong.
No branches or pull requests
from HelloWorld import HelloWorld
from metaflow import Flow, Metaflow
import pytest
@pytest.fixture
def get_flow():
# Setup
flow = HelloWorld() // OSError: could not get source code
Below is a simple Metaflow
from metaflow import FlowSpec, step
class HelloWorldFlow(FlowSpec):
@step
def start(self):
print("Hello, World!")
self.next(self.end)
if name == 'main':
HelloWorldFlow()
The text was updated successfully, but these errors were encountered: