Thanks for your interest in contributing to Kinto!
Report bugs at https://github.com/Kinto/kinto-http.py/issues/new
If you are reporting a bug, please include:
- Any details about your local setup that might be helpful in troubleshooting.
- Detailed steps to reproduce the bug or even a PR with a failing tests if you can.
Depending on the platform and chosen configuration, some libraries or extra services are required.
The following commands will install necessary tools for cryptography and Python packaging like Virtualenv.
On Debian / Ubuntu based systems:
apt-get install libffi-dev libssl-dev python-dev python-virtualenv
Assuming brew is installed:
brew install libffi openssl pkg-config python
pip install virtualenv
- Fork the repo on GitHub and clone locally:
git clone [email protected]:Kinto/kinto-http.py.git
git remote add {your_name} [email protected]:{your_name}/kinto-http.py.git
make tests-once
to run the tests with the current venv.make tests
to run all the tests (with Py2 and Py3, flake8 and functional tests)
You may need to use make runkinto
before running the functional tests.
If you want to run the functional tests only, you can use make functional
.
git checkout master
git pull origin master
git checkout -b issue_number-bug-title
git commit # Your changes
git push -u {your_name} issue_number-bug-title
Then you can create a Pull-Request. Please create your pull-request as soon as you have at least one commit even if it has only failing tests. This will allow us to help and give guidance.
You will be able to update your pull-request by pushing commits to your branch.