You can post questions or issues or feedback through the following channels:
- Github Discussions: For discussions about development, questions about usage, and feature requests.
- GitHub Issues: For bug reports and feature requests.
- Break your work into small, single-purpose patches if possible. It's much harder to merge in a large change with a lot of disjoint features.
- Submit the patch as a GitHub pull request against the master branch.
- Make sure that your code passes the unit tests.
- Make sure that your code passes the linter.
- Add new unit tests for your code.
To test that all is working as expected, run either:
$ lithops testor
$ python3 -m lithops.tests.tests_mainPlease follow the guidelines in docs/testing.md for more details.