From c0e9006eb7f62ccb9957d6c2005c1865d181f286 Mon Sep 17 00:00:00 2001 From: "Hugh A. Miles II" Date: Tue, 24 Aug 2021 10:45:40 -0700 Subject: [PATCH] feat: add activate command (#16404) * add activate command * Update Makefile * fix linting * fix --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ef0d3edbec..2d32588e3b 100644 --- a/Makefile +++ b/Makefile @@ -66,6 +66,9 @@ venv: test -d venv || ${PYTHON} -m venv venv # setup a python3 virtualenv . venv/bin/activate +make activate: + source venv/bin/activate + pre-commit: # setup pre commit dependencies pip3 install -r requirements/integration.txt