Re: [PATCH v6 22/25] python: add Makefile for some common tasks

2021-05-25 Thread Cleber Rosa
On Tue, May 25, 2021 at 03:45:26PM -0400, John Snow wrote: > On 5/25/21 3:24 PM, Cleber Rosa wrote: > > On Wed, May 12, 2021 at 07:12:38PM -0400, John Snow wrote: > > > Add "make venv" to create the pipenv-managed virtual environment that > > > contains our explicitly pinned dependencies. > > > >

Re: [PATCH v6 22/25] python: add Makefile for some common tasks

2021-05-25 Thread John Snow
On 5/25/21 3:24 PM, Cleber Rosa wrote: On Wed, May 12, 2021 at 07:12:38PM -0400, John Snow wrote: Add "make venv" to create the pipenv-managed virtual environment that contains our explicitly pinned dependencies. Add "make check" to run the python linters [in the host execution environment].

Re: [PATCH v6 22/25] python: add Makefile for some common tasks

2021-05-25 Thread Cleber Rosa
On Wed, May 12, 2021 at 07:12:38PM -0400, John Snow wrote: > Add "make venv" to create the pipenv-managed virtual environment that > contains our explicitly pinned dependencies. > > Add "make check" to run the python linters [in the host execution > environment]. > > Add "make venv-check" which

[PATCH v6 22/25] python: add Makefile for some common tasks

2021-05-12 Thread John Snow
Add "make venv" to create the pipenv-managed virtual environment that contains our explicitly pinned dependencies. Add "make check" to run the python linters [in the host execution environment]. Add "make venv-check" which combines the above two: create/update the venv, then run the linters in