diff options
-rw-r--r-- | .travis.yml | 2 | ||||
-rwxr-xr-x | tools/travis-test.sh | 7 |
2 files changed, 4 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 2046ce975..fca0c632d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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: diff --git a/tools/travis-test.sh b/tools/travis-test.sh index ca9f236a2..bd9f79c22 100755 --- a/tools/travis-test.sh +++ b/tools/travis-test.sh @@ -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() |