b782271be8
* Moving function add_query_module from CMakeLists from tests/e2e/magic_functions to tests/e2e * Adding failing test copying behavior when loading c module (.so) into memgraph. * Fixing issue where NO_ERROR status returned MgpTransAddFixedResult was converted to false * Removing unnecessary transformation * removing incorrect parameterization of test * re-adding parametrized transformation
11 lines
351 B
CMake
11 lines
351 B
CMake
# Set up Python functions for e2e tests
|
|
function(copy_magic_functions_e2e_python_files FILE_NAME)
|
|
copy_e2e_python_files(functions ${FILE_NAME})
|
|
endfunction()
|
|
|
|
copy_magic_functions_e2e_python_files(common.py)
|
|
copy_magic_functions_e2e_python_files(conftest.py)
|
|
copy_magic_functions_e2e_python_files(function_example.py)
|
|
|
|
add_subdirectory(functions)
|