Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ python:
matrix:
include:
- python: 2.7
env: USE_CHROOT=1 ARCH=i386 DIST=zesty PYTHON=2.7
env: USE_CHROOT=1 ARCH=i386 DIST=artful PYTHON=2.7
sudo: true
dist: trusty
addons:
Expand Down
7 changes: 3 additions & 4 deletions tools/travis-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,13 @@ setup_chroot()

sudo chroot $DIR bash -c "apt-get update"
# faster operation with preloaded eatmydata
sudo chroot $DIR bash -c "apt-get install -qq -y --force-yes eatmydata"
sudo chroot $DIR bash -c "apt-get install -qq -y eatmydata"
echo '/usr/$LIB/libeatmydata.so' | \
sudo tee -a $DIR/etc/ld.so.preload

# install needed packages
sudo chroot $DIR bash -c "apt-get install -qq -y --force-yes \
libatlas-dev libatlas-base-dev gfortran \
python-dev python-nose python-pip cython"
sudo chroot $DIR bash -c "apt-get install -qq -y \
libatlas-base-dev gfortran python-dev python-nose python-pip cython"
}

run_test()
Expand Down