Skip to content

Commit

Permalink
move pip invocation to before micromamba is called
Browse files Browse the repository at this point in the history
  • Loading branch information
awenocur committed Dec 6, 2023
1 parent c1ce81c commit efa288c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 0 additions & 1 deletion apis/python/conda-env.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,4 @@ dependencies:
- pip:
- pytest-runner==5.1
- pytest==5.1.2
- tiledb
- zipp<3.16
6 changes: 4 additions & 2 deletions ci/azure-linux_mac.yml
Original file line number Diff line number Diff line change
Expand Up @@ -156,12 +156,14 @@ steps:
# Create and activate the conda environment
pushd apis/python
micromamba create -f conda-env.yml -y python=system
micromamba activate tiledbvcf-py
echo 'Python info:'
which python
python --version
pip install tiledb
micromamba create -f conda-env.yml -y
micromamba activate tiledbvcf-py
# Install and test the Python API
python setup.py install --user
python setup.py pytest
Expand Down

0 comments on commit efa288c

Please sign in to comment.