Skip to content

Commit

Permalink
Fix local package installation directory
Browse files Browse the repository at this point in the history
  • Loading branch information
xylar committed Nov 10, 2020
1 parent 85c8d48 commit ad2de47
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ jobs:
- bash: |
eval "$(conda shell.bash hook)"
conda create --yes --quiet --name test --use-local python=$PYTHON_VERSION \
pyremap pytest
conda create --yes --quiet --name test -c ${CONDA_PREFIX}/conda-bld/ \
python=$PYTHON_VERSION pyremap pytest
displayName: Create Anaconda test environment
- bash: |
Expand All @@ -55,8 +55,8 @@ jobs:
- bash: |
eval "$(conda shell.bash hook)"
conda create --yes --quiet --name docs --use-local python=$PYTHON_VERSION \
pyremap sphinx mock sphinx_rtd_theme m2r
conda create --yes --quiet --name test -c ${CONDA_PREFIX}/conda-bld/ \
python=$PYTHON_VERSION pyremap sphinx mock sphinx_rtd_theme m2r
condition: eq(variables['python.version'], '3.8')
displayName: Create Anaconda docs environment
Expand Down Expand Up @@ -154,8 +154,8 @@ jobs:
- bash: |
eval "$(conda shell.bash hook)"
conda create --yes --quiet --name test --use-local python=$PYTHON_VERSION pyremap \
pytest sphinx mock sphinx_rtd_theme m2r
conda create --yes --quiet --name test -c ${CONDA_PREFIX}/conda-bld/ \
python=$PYTHON_VERSION pyremap pytest sphinx mock sphinx_rtd_theme m2r
displayName: Create Anaconda test environment
- bash: |
Expand Down

0 comments on commit ad2de47

Please sign in to comment.