Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

README.md

Developer tools useful for maintaining the repository

As developer you'll need:

pip install coverage pytest fnmatch black

Code headers

The code headers can be standardized by running

python tools/update_license_headers.py

from the repository root.

You can edit the NOTICE.yml to update the header.

Workflow for contributing/checking your code

black .

Running the tests (locally)

We use the pytest framework. You can just run:

pytest

For coverage run:

coverage run -m pytest
coverage report