mirror of
https://github.com/neondatabase/neon.git
synced 2025-12-27 08:09:58 +00:00
14 lines
391 B
Bash
Executable File
14 lines
391 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# This is a helper script for setting up/updating our python environment.
|
|
# It is intended to be a primary endpoint for all the people who want to
|
|
# just setup test environment without going into details of python package management
|
|
|
|
poetry config --list
|
|
|
|
if [ -z "${CI}" ]; then
|
|
poetry install --no-root --no-interaction --ansi
|
|
else
|
|
poetry install --no-root
|
|
fi
|