We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8125aa3 commit d886d96Copy full SHA for d886d96
justfile
@@ -5,7 +5,9 @@ help:
5
6
# Install a development virtual environment (at `./.venv`).
7
install:
8
- python -m venv .venv
+ if [ ! -d .venv ]; then
9
+ python -m venv .venv
10
+ fi
11
.venv/bin/pip install --upgrade pip setuptools wheel
12
.venv/bin/pip install -e.
13
.venv/bin/pip install -r requirements/test/requirements.txt
0 commit comments