ongchi commented on PR #562: URL: https://github.com/apache/arrow-datafusion-python/pull/562#issuecomment-1929096952
> Hello @andygrove do you mind giving me a hand with this PR ? I exposed `Flatten` in `functions.rs` but the python array function test for flatten is failing like so: > > ``` > name = 'flatten' > > def __getattr__(name): > > return getattr(functions, name) > E AttributeError: module 'functions' has no attribute 'flatten' > ``` Hi @mobley-trent Did you try to rebuild the package before running pytest? Like this: ```shell # build and install package maturin develop ``` Also, don't forget to active the venv before this command. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
