diff --git a/ci/azure-steps-macos.yml b/ci/azure-steps-macos.yml index 854a106d..09082c77 100644 --- a/ci/azure-steps-macos.yml +++ b/ci/azure-steps-macos.yml @@ -12,7 +12,7 @@ steps: displayName: Create environment. - script: | - conda activate uarray + source activate uarray MACOSX_DEPLOYMENT_TARGET=10.9 pip install -e . --no-deps displayName: Install package diff --git a/ci/azure-steps-windows.yml b/ci/azure-steps-windows.yml index 7df82f45..27881b33 100644 --- a/ci/azure-steps-windows.yml +++ b/ci/azure-steps-windows.yml @@ -10,12 +10,12 @@ steps: displayName: Create environment. - script: | - conda activate uarray + source activate uarray pip install -e . --no-deps displayName: Install package - script: | - conda activate uarray + source activate uarray pytest displayName: Run tests diff --git a/ci/azure-steps.yml b/ci/azure-steps.yml index fa72f670..b1df6b9d 100644 --- a/ci/azure-steps.yml +++ b/ci/azure-steps.yml @@ -12,7 +12,7 @@ steps: displayName: Create environment. - script: | - conda activate uarray + source activate uarray pip install -e . --no-deps displayName: Install package