Skip to content

Update .gitpod.yml #65

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Aug 19, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
image: numpy/numpy-gitpod:latest
image: ghcr.io/conda/conda-ci:main-linux-python3.9
tasks:
- name: initialize
init: |
mkdir -p .vscode
echo '{"python.defaultInterpreterPath": "/home/gitpod/mambaforge3/envs/pymc-test-py39/bin/python"}' > .vscode/settings.json
conda create -yf conda-envs/environment-test-py39.yml
echo '{"python.defaultInterpreterPath": "/home/gitpod/.conda/envs/pymc-test-py39/bin/python"}' > .vscode/settings.json
conda init bash && source ~/.bashrc
conda env update -f conda-envs/environment-test-py39.yml
conda activate pymc-test-py39
pip install -r requirements-dev.txt
pip install -e .
command: |
conda init bash && echo "conda activate pymc-test-py39" >> ~/.bashrc && source ~/.bashrc && conda activate pymc-test-py39

vscode:
extensions:
Expand Down