Skip to content

Commit d19f575

Browse files
authored
Update .gitpod.yml (#6109)
* Update .gitpod.yml * Update .gitignore * Update .gitpod.yml
1 parent 761f77d commit d19f575

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,4 @@ pytestdebug.log
4444

4545
# Codespaces
4646
pythonenv*
47+
env/

.gitpod.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ tasks:
33
- name: initialize
44
init: |
55
mkdir -p .vscode
6-
echo '{"python.defaultInterpreterPath": "/home/gitpod/.conda/envs/pymc-dev/bin/python"}' > .vscode/settings.json
6+
echo '{"python.defaultInterpreterPath": "/workspace/pymc/env/bin/python"}' > .vscode/settings.json
77
conda init bash && source ~/.bashrc
8-
conda env update -f conda-envs/environment-dev.yml
9-
conda activate pymc-dev
8+
conda env update -f conda-envs/environment-dev.yml -p /workspace/pymc/env
9+
conda activate /workspace/pymc/env
1010
pip install -e .
1111
command: |
12-
conda init bash && echo "conda activate pymc-dev" >> ~/.bashrc && source ~/.bashrc && conda activate pymc-dev
12+
conda init bash && echo "conda activate /workspace/pymc/env" >> ~/.bashrc && source ~/.bashrc
1313
1414
vscode:
1515
extensions:

0 commit comments

Comments
 (0)