Skip to content

Latest commit

 

History

History
21 lines (12 loc) · 561 Bytes

contributing.md

File metadata and controls

21 lines (12 loc) · 561 Bytes

Contributing

To contribute to this library, first checkout the code. Then create a new virtual environment:

cd toggl-to-sqlite
python -m venv venv
source venv/bin/activate

Now install the dependencies and tests:

pip install -e '.[test]'

Running the tests

To run the tests:

pytest

Code style

This library uses Black for code formatting. The correct version of Black will be installed by pip install -e '.[test]' - you can run black . in the root directory to apply those formatting rules.