https://github.com/brandon-rhodes/python-jplephem
Revision aae60da59290344ac7c2ad307e4b971c9a85007b authored by Brandon Rhodes on 19 September 2019, 20:05:24 UTC, committed by Brandon Rhodes on 19 September 2019, 20:05:24 UTC
This prevents Travis CI from having to hammer the JPL servers when
testing jplephem against several versions of Python at once.  It
will also stop CI from routinely erroring out one or more versions
of Python when the JPL’s servers happen to drop a request.
1 parent 2cca7f1
Raw File
Tip revision: aae60da59290344ac7c2ad307e4b971c9a85007b authored by Brandon Rhodes on 19 September 2019, 20:05:24 UTC
Check in ephemerides necessary for CI testing
Tip revision: aae60da
.travis.yml
# Config file for automatic testing at travis-ci.org

language: python

python:
  - "2.7"
  - "3.4"
  - "3.5"
  - "3.6"
  - "3.7"

install:
  - "pip install unittest2"
  - "python setup.py sdist"
  - "mv jplephem trash"
  - "pip install dist/jplephem-*.tar.gz"

script:
  - "cd ci && unit2 jplephem.test"
  - "cd ci && python -m jplephem.jpltest"
back to top