def test_import(self): import test_module test_module.one()
def check(self): import test_module test_module.one()
def test_import(self): import test_module if option == "py_modules": import pip_install_test # noqa: F401 test_module.one()
def f(): import test_module test_module.one()
def check_and_get_node_id(self): import test_module test_module.one() return ray.get_runtime_context().node_id
def test_import(self): import test_module return test_module.one()
def test_import(): return test_module.one()
def test_import(self): import test_module assert TEST_IMPORT_DIR in os.environ.get("PYTHONPATH", "") return test_module.one()