xonsh/.travis.yml

44 lines
1.2 KiB
YAML
Raw Normal View History

language: python
2016-07-16 11:09:20 -07:00
matrix:
include:
- os: linux
python: "nightly"
- os: linux
2016-07-23 10:22:09 -04:00
python: 3.4
2016-07-16 11:09:20 -07:00
- os: linux
2016-07-23 10:22:09 -04:00
python: 3.5
2016-07-16 11:09:20 -07:00
- os: osx
2016-07-23 10:22:09 -04:00
python: 3.4
- os: osx
2016-07-23 10:22:09 -04:00
python: 3.5
2016-07-22 15:38:16 +02:00
2016-07-22 15:50:55 +02:00
install:
- if [[ ! "$TRAVIS_PYTHON_VERSION" == "nightly" ]]; then
2016-07-22 12:57:04 -04:00
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
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:22:09 -04:00
- if [[ "$TRAVIS_PYTHON_VERSION" == 3.4 ]]; then
conda install -y python=3.4 pygments prompt_toolkit ply pytest pytest-cov pytest-timeout;
pip install pytest-flake8 codecov;
python setup.py install;
2016-07-23 10:22:09 -04:00
elif [[ "$TRAVIS_PYTHON_VERSION" == 3.5 ]]; then
conda install -y python=3.5 pygments prompt_toolkit ply pytest pytest-cov pytest-timeout;
pip install pytest-flake8 codecov;
python setup.py install;
else
pip install --upgrade -r requirements-tests.txt;
fi
2016-07-22 15:38:16 +02:00
script:
- py.test --flake8 --cov=. --cov-report=term --timeout=10
2016-07-22 15:38:16 +02:00
after_success:
- codecov