This repository contains all of the code that powers Gearbot's web dashboard
All healthy contributions are appreciated and welcomed.
We use Pytest
for unit and functional testing to help with keeping bugs from popping up.
See pytest.ini
on how to run specific tests.
- Clone the repository with
git clone https://github.com/gearbot/Dashboard-api.git
- Install the project dependencies with
pip -r requirements.txt
- Assure your code behaves as expected, add comments where explanations may be needed
- Run
pytest
to make sure the existing tests still succeed - Add any new tests or tweak existing ones to fit new behavior or features
- Make sure all tests pass when you are finished