xonsh/.travis.yml

62 lines
1.7 KiB
YAML
Raw Normal View History

language: python
2016-07-16 11:09:20 -07:00
matrix:
include:
- os: linux
python: 3.5
env:
- BUILD_DOCS=true
- os: linux
python: "nightly"
2016-09-08 11:48:06 -07:00
env:
- RUN_COVERAGE=true
2016-07-16 11:09:20 -07:00
- os: osx
2016-07-23 10:47:22 -04:00
language: generic
env: PYTHON="3.4" MINICONDA_OS="MacOSX"
- os: osx
2016-07-23 10:47:22 -04:00
language: generic
env: PYTHON="3.5" MINICONDA_OS="MacOSX"
allow_failures:
- python: "nightly"
2016-07-22 15:38:16 +02:00
2016-07-23 10:47:22 -04:00
before_install:
- if [[ ! "$TRAVIS_PYTHON_VERSION" == "nightly" && ! $BUILD_DOCS ]]; then
2016-07-23 10:47:22 -04:00
URL="https://repo.continuum.io/miniconda/Miniconda3-latest-${MINICONDA_OS}-x86_64.sh";
wget "${URL}" -O miniconda.sh;
2016-07-22 12:57:04 -04:00
bash miniconda.sh -b -p $HOME/miniconda;
export PATH="$HOME/miniconda/bin:$PATH";
hash -r;
conda config --set always_yes yes --set changeps1 no;
conda update -q conda;
conda info -a;
fi
2016-07-23 10:47:22 -04:00
install:
- if [[ $BUILD_DOCS = true ]]; then
python setup.py install;
pip install -r requirements-docs.txt;
pip install pygments prompt_toolkit ply psutil ipykernel matplotlib;
elif [[ ! "$TRAVIS_PYTHON_VERSION" == "nightly" ]]; then
conda create -q -n test_env python=${PYTHON} pygments prompt_toolkit ply pytest pytest-timeout psutil;
2016-07-23 11:55:26 -04:00
source activate test_env;
2016-07-23 11:32:40 -04:00
python setup.py install;
else
2016-07-26 10:01:23 -04:00
pip install -r requirements-tests.txt;
2016-07-23 11:32:40 -04:00
fi
2016-09-08 11:48:06 -07:00
2016-07-22 15:38:16 +02:00
script:
- if [[ $BUILD_DOCS = true ]]; then
cd docs;
make html;
elif [[ $RUN_COVERAGE = true ]]; then
2016-08-19 02:49:05 +03:00
py.test --flake8 --cov=. --timeout=10;
2016-07-26 10:11:30 -04:00
else
py.test --timeout=10;
fi
2016-09-08 11:48:06 -07:00
2016-07-22 15:38:16 +02:00
after_success:
2016-07-26 12:54:30 -04:00
- if [[ $RUN_COVERAGE = true ]]; then
2016-07-26 10:11:30 -04:00
codecov;
2016-08-19 02:49:05 +03:00
fi