Faiyaz Hasan
Faiyaz Hasan
### What should we add? Dump the Covalent logs (i.e. logs accessed via `covalent logs` in the CLI) when any of the tests fail in tests.yml as part of the...
Currently there are two new attributes in the Lattice class. **Acceptance criteria:** - [ ] Determine if new fields need to be added to the database. - [ ] Implement...
Currently, if `dask` / `local` executor is specified in the metadata as a string, the actual executor is not pickled in the filename but rather the string. **Acceptance criteria:** -...
Make the `covalent status` method more robust by checking the server status from a heartbeat file in addition to checking the existence of the `dispatcher/ui.pid` files. This will ensure that...
### What should we add? - [ ] References to TransferFrom & TransferTo have to be removed since those functionalities are not working. We get the following error when trying...
### Fix the list of typos / grammatical errors: - [ ] "We can perform file transfer operations pre or post electron execution here we illustrate how to perform file...
### Environment - **Covalent version**: 0.233.0 ### What is happening? Currently, the electron object is being passed in the electron decorator wrapper making it more bloated. This was a required...
### Environment - **Covalent version**: - **Python version**: 3.8.13 - **Operating system**: MacOS Ventura M1 ### What is happening? The Covalent CLI tool hangs when the self-hosted dispatcher address and...
When writing unit tests for the electron module and mocking methods in the electron module, there is a namespace conflict. This conflict is because there is a function called `electron`...
The breaking change is the following snippet: ``` proc_pool = ProcessPoolExecutor() class LocalExecutor(BaseExecutor): """ Local executor class that directly invokes the input function. """ ``` in `covalent/executor/executor_plugins/local.py`.