Marc Cataford
eacc51aa62
build: pytest call build: set up venv test: snapshot update, formatting chore: author info formatting chore: author info formatting build: includes ci: release update docs: set_version
13 lines
248 B
Bash
13 lines
248 B
Bash
#!/bin/bash
|
|
|
|
PROJECT="slack-status-cli"
|
|
|
|
python -m pip install pip==21.2.0 pip-tools==6.5.0 --no-cache
|
|
|
|
if [ ! -d "./$PROJECT.venv" ]; then
|
|
python -m venv ./$PROJECT.venv
|
|
fi
|
|
|
|
source ./$PROJECT.venv/bin/activate
|
|
|
|
pip-sync ./requirements_dev.txt
|