Project

Profile

Help

Story #6938

Updated by daviddavis almost 4 years ago

I was talking to ggainey about some of the automation checks we have in pulp (commit validation, style/lint checks, changelog, etc) and how it might be frustrating for new devs. I've heard the same feedback from other contributors such as galaxy. 

 We need to provide an easy way for developers to run our CI checks locally. I've seen other projects (bandersnatch[0], black[1], celery[2], etc) use pre-commit: 

 https://pre-commit.com/ 

 [0] https://github.com/pypa/bandersnatch/blob/master/.pre-commit-config.yaml 

 
 [1] https://github.com/psf/black/blob/master/.pre-commit-config.yaml 

 
 [2] https://github.com/celery/celery/blob/master/.pre-commit-config.yaml

Back