Skip to content

Commit

Permalink
Trying to get install across all OSes on Azure
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Blumberg committed Jan 12, 2019
1 parent 65b2d69 commit 1db172a
Showing 1 changed file with 11 additions and 5 deletions.
16 changes: 11 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,21 @@ steps:
- task: CondaEnvironment@1
displayName: 'Install Conda'
inputs:
packageSpecs: 'python=3 numpy=1.15.* pyside pytest pip python-dateutil requests setuptools'
installOptions: '-c conda-forge'
environmentName: 'test-env'
packageSpecs: 'python=3'

- script: which python & which pip & ls
- script: |
conda activate test-env
conda install -y conda
conda install -y -c conda-forge numpy=1.15.* pyside pytest pip python-dateutil requests setuptools
displayName: "Install packages"

- script: which python & which pip % conda list
displayName: "Status"

- script: sudo pip install -e .
- script: pip install -e . #python setup.py install --user --prefix=
displayName: "Installing code"

- script: sudo pytest -v
- script: pytest -v
displayName: 'Running SHARPpy tests'

0 comments on commit 1db172a

Please sign in to comment.