pyqtgraph/.travis.yml

148 lines
4.8 KiB
YAML
Raw Normal View History

2014-03-24 20:52:33 +00:00
language: python
# Credit: Original .travis.yml lifted from VisPy
# Here we use anaconda for 2.6 and 3.3, since it provides the simplest
# interface for running different versions of Python. We could also use
# it for 2.7, but the Ubuntu system has installable 2.7 Qt4-GL, which
# allows for more complete testing.
2014-03-24 21:12:06 +00:00
notifications:
email: false
2014-03-24 20:52:33 +00:00
virtualenv:
system_site_packages: true
env:
# Enable python 2 and python 3 builds
# Note that the 2.6 build doesn't get flake8, and runs old versions of
# Pyglet and GLFW to make sure we deal with those correctly
#- PYTHON=2.6 QT=pyqt TEST=standard
- PYTHON=2.7 QT=pyqt TEST=extra
- PYTHON=2.7 QT=pyside TEST=standard
- PYTHON=3.3 QT=pyqt TEST=standard
- PYTHON=3.3 QT=pyside TEST=standard
2014-03-25 02:40:18 +00:00
- PYTHON=3.3 QT=pyqt5 TEST=standard
2014-03-24 20:52:33 +00:00
before_install:
2014-03-25 01:17:15 +00:00
- travis_retry sudo apt-get update;
# - if [ "${PYTHON}" != "2.7" ]; then
# wget http://repo.continuum.io/miniconda/Miniconda-2.2.2-Linux-x86_64.sh -O miniconda.sh &&
# chmod +x miniconda.sh &&
# ./miniconda.sh -b &&
# export PATH=/home/$USER/anaconda/bin:$PATH &&
# conda update --yes conda &&
# travis_retry sudo apt-get -qq -y install libgl1-mesa-dri;
# fi;
2014-03-24 20:52:33 +00:00
install:
2014-03-25 03:51:45 +00:00
# Dependencies
2014-03-25 03:47:30 +00:00
- if [ "${PYTHON}" == "2.7" ]; then
2014-03-25 14:23:10 +00:00
travis_retry sudo apt-get -qq -y install python-numpy &&
2014-03-25 03:51:45 +00:00
sudo pip install pytest &&
sudo pip install flake8;
2014-03-25 03:47:30 +00:00
else
2014-03-25 14:23:10 +00:00
travis_retry sudo apt-get -qq -y install python3-numpy &&
curl http://python-distribute.org/distribute_setup.py | sudo python3 &&
curl https://raw.github.com/pypa/pip/master/contrib/get-pip.py | sudo python3 &&
2014-03-25 17:36:09 +00:00
which pip;
which pip3;
which pip-3;
which pip3.2;
which pip-3.2;
sudo pip-3.2 install pytest &&
sudo pip-3.2 install flake8;
2014-03-25 03:47:30 +00:00
fi;
2014-03-25 00:56:01 +00:00
2014-03-25 03:51:45 +00:00
# Qt
- if [ "${PYTHON}" == "2.7" ]; then
2014-03-24 21:12:06 +00:00
if [ ${QT} == 'pyqt' ]; then
travis_retry sudo apt-get -qq -y install python-qt4 python-qt4-gl;
2014-03-24 20:52:33 +00:00
else
travis_retry sudo apt-get -qq -y install python-pyside.qtcore python-pyside.qtgui python-pyside.qtsvg python-pyside.qtopengl;
fi;
elif [ "${PYTHON}" == "3.3" ]; then
if [ ${QT} == 'pyqt' ]; then
2014-03-25 01:48:43 +00:00
travis_retry sudo apt-get -qq -y install python3-pyqt4;
2014-03-25 02:40:18 +00:00
elif [ ${QT} == 'pyside' ]; then
2014-03-25 01:48:43 +00:00
travis_retry sudo apt-get -qq -y install python3-pyside;
2014-03-25 02:40:18 +00:00
else
2014-03-25 03:47:30 +00:00
sudo bash -c "echo 'deb http://us.archive.ubuntu.com/ubuntu/ saucy main restricted' >> /etc/apt/sources.list" &&
sudo bash -c "echo 'deb http://us.archive.ubuntu.com/ubuntu/ saucy universe' >> /etc/apt/sources.list" &&
2014-03-25 03:25:34 +00:00
sudo apt-get update &&
sudo apt-get install python3-pyqt5;
2014-03-24 20:52:33 +00:00
fi;
else
conda create -n testenv --yes --quiet pip python=$PYTHON &&
source activate testenv &&
2014-03-24 21:12:06 +00:00
if [ ${QT} == 'pyqt' ]; then
conda install --yes --quiet pyside;
2014-03-24 20:52:33 +00:00
else
conda install --yes --quiet pyside;
2014-03-24 20:52:33 +00:00
fi;
fi;
# Install PyOpenGL
2014-03-25 14:23:10 +00:00
- if [ "${PYTHON}" == "2.7" ]; then
echo "Using OpenGL stable version (apt)";
2014-03-24 20:52:33 +00:00
travis_retry sudo apt-get -qq -y install python-opengl;
2014-03-25 14:23:10 +00:00
else
2014-03-24 20:52:33 +00:00
echo "Using OpenGL stable version (pip)";
2014-03-25 17:36:09 +00:00
pip-3.2 install -q PyOpenGL;
2014-03-24 20:52:33 +00:00
fi;
2014-03-25 14:23:10 +00:00
2014-03-24 20:52:33 +00:00
2014-03-25 01:31:33 +00:00
# Debugging helpers
- uname -a
- cat /etc/issue
2014-03-25 17:29:00 +00:00
- if [ "${PYTHON}" == "2.7" ]; then
python --version;
else
python3 --version;
fi;
2014-03-25 01:31:33 +00:00
- apt-cache search python3-pyqt
2014-03-25 01:48:43 +00:00
- apt-cache search python3-pyside
2014-03-25 02:40:18 +00:00
- apt-cache search pytest
2014-03-25 15:55:43 +00:00
- apt-cache search python pip
- apt-cache search python qt5
2014-03-25 02:24:27 +00:00
2014-03-24 20:52:33 +00:00
before_script:
# We need to create a (fake) display on Travis, let's use a funny resolution
- export DISPLAY=:99.0
- /sbin/start-stop-daemon --start --quiet --pidfile /tmp/custom_xvfb_99.pid --make-pidfile --background --exec /usr/bin/Xvfb -- :99 -screen 0 1400x900x24 -ac +extension GLX +render
2014-03-25 02:24:27 +00:00
# Make sure everyone uses the correct python
2014-03-25 03:04:37 +00:00
- mkdir ~/bin && ln -s `which python${PYTHON}` ~/bin/python
- export PATH=/home/travis/bin:$PATH
2014-03-25 02:31:56 +00:00
- which python
- python --version
2014-03-24 20:52:33 +00:00
script:
# Run unit tests
2014-03-25 02:24:27 +00:00
- python setup.py test
2014-03-24 20:52:33 +00:00
# check line endings
- if [ "${TEST}" == "extra" ]; then
find ./ -name "*.py" | xargs file | grep CRLF; out=$?;
if [ ${out} == 0 ];
then false;
else true;
fi;
fi;
# Check for style issues
- if [ "${TEST}" == "extra" ]; then
2014-03-25 02:24:27 +00:00
python setup.py style;
fi;
2014-03-25 02:24:27 +00:00
# Check install works
2014-03-25 03:47:30 +00:00
- sudo python setup.py --quiet install
2014-03-25 02:31:56 +00:00
- cd ..; echo "import pyqtgraph.examples" | python
2014-03-25 02:24:27 +00:00
# Check double-install fails
2014-03-25 03:47:30 +00:00
- cd pyqtgraph && sudo python setup.py --quiet install; if [ $? == 0 ]; then false; else true; fi;
2014-03-24 20:52:33 +00:00