planetarypy / pdsview

Python PDS Image Viewer
BSD 3-Clause "New" or "Revised" License
13 stars 7 forks source link

Make travis tests pass #3

Closed godber closed 9 years ago

godber commented 9 years ago

The travis tests fail to pass due to failed installation of dependencies. The first issue is that the requirements.txt is used to install dependencies and it does not include the proper things, like ginga. So update the requirements.txt to include the appropriate things.

Then you may encounter issues getting gdal_pds installed. You use things from the .travis.yml file I use to install that:

https://github.com/godber/gdal_pds/blob/master/.travis.yml

Setup travis.yml on your fork

godber commented 9 years ago

You can see the failure logs here:

godber commented 9 years ago

Oh, getting the Qt requirements solved is also going to be a pain.

godber commented 9 years ago

For Qt/PySide it might be sufficient to apt-get install the appropriate packages in the .travis.yml.

apt-get install python-qt4
godber commented 9 years ago

@macgyver603 got this working in https://github.com/planetarypy/pdsview/pull/16, nice work!