diff options
-rw-r--r-- | .gitpod.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 00000000..a10e6e26 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,5 @@ +tasks: + - name: "Python Environment" + before: "pyenv install 3.9.6 && pyenv global 3.9.6" + init: "pip install poetry && export PIP_USER=false" + command: "poetry install && poetry run pre-commit install" |