Re: Using Tox on TravisCI to enforce pep8 standards etc
Markus Piotrowski <[email protected]>
| Newsgroups | gmane.comp.python.bio.devel |
|---|---|
| Message-ID | <[email protected]> |
> Hello all, > > Many of us are already using the git pre-commit hook > setup by Christian Brueffer, but new contributors in > particular are unlikely to have this installed - and I > still don't know how to use this on Windows: > > https://github.com/biopython/biopython/issues/493 Regarding Windows: I'm using Git for Windows and flake8 as pre-commit hook which can easily be setup by flake8 itself: $ flake8 --install-hook=git -Markus