debian-jplephem/.travis.yml

27 lines
611 B
YAML

# Config file for automatic testing at travis-ci.org
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
# The old version of NumPy installed here is in support of users who
# cannot upgrade relentlessly.
# https://github.com/brandon-rhodes/python-jplephem/issues/35
install:
- "if [[ $TRAVIS_PYTHON_VERSION < 3.7 ]] ; then pip install numpy==1.11.3 ; else pip install numpy ; fi"
- "pip install unittest2"
- "python setup.py sdist"
- "mv jplephem trash"
- "pip install dist/jplephem-*.tar.gz"
script:
- "cd ci"
- "unit2 jplephem.test"
- "python -m jplephem.jpltest"