spacetelescope / wss_tools

Python tools for JWST Wavefront Sensing Software
https://wss-tools.readthedocs.io
BSD 3-Clause "New" or "Revised" License
11 stars 10 forks source link

TST: Azure cannot install xmllint #63

Closed pllim closed 5 years ago

pllim commented 5 years ago

Azure failure reported upstream at https://developercommunity.visualstudio.com/content/problem/726580/sudo-apt-get-install-libxml2-utils-failed-on-ubunt.html

jhunkeler commented 5 years ago

Try putting a apt-get update right before your apt-get install call

EDIT: Like...

  - script: |
      sudo apt-get update
      sudo apt-get install libxml2-utils
      python -m pip install --upgrade pip setuptools
      pip install numpy astropy pytest pytest-astropy
      python setup.py test
    displayName: 'Run tests'