Skip to content

Latest commit

 

History

History
26 lines (15 loc) · 701 Bytes

contributing.md

File metadata and controls

26 lines (15 loc) · 701 Bytes

Contributing

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

cd pelican-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

The correct version of these libraries will be installed by pip install -e '.[test]' - you can run pre-commit run --all-files in the root directory to apply those formatting rules.