Skip to content

Commit

Permalink
MAINT trying to fix the coverage…
Browse files Browse the repository at this point in the history
  • Loading branch information
NelleV committed Jan 10, 2017
1 parent eff7b0f commit 323fee1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions build_tools/travis/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@

# License: 3-clause BSD

# Travis clone scikit-learn/scikit-learn repository in to a local repository.
# We use a cached directory with three scikit-learn repositories (one for each
# Travis clone hiclib/iced repository in to a local repository.
# We use a cached directory with three iced repositories (one for each
# matrix entry) from which we pull from local Travis repository. This allows
# us to keep build artefact for gcc + cython, and gain time

Expand Down Expand Up @@ -102,9 +102,9 @@ fi
rsync -av --exclude '.git/' --exclude='testvenv/' \
$TRAVIS_BUILD_DIR $CACHED_BUILD_DIR

cd $CACHED_BUILD_DIR/scikit-learn
cd $CACHED_BUILD_DIR/iced

# Build scikit-learn in the install.sh script to collapse the verbose
# Build iced in the install.sh script to collapse the verbose
# build output in the travis output when it succeeds.
python --version
python -c "import numpy; print('numpy %s' % numpy.__version__)"
Expand Down
2 changes: 1 addition & 1 deletion build_tools/travis/test_script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

set -e

# Get into a temp directory to run test from the installed scikit learn and
# Get into a temp directory to run test from the installed iced and
# check if we do not leave artifacts
mkdir -p $TEST_DIR
# We need the setup.cfg for the nose settings
Expand Down
3 changes: 2 additions & 1 deletion continuous_integration/show-python-packages-versions.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import sys

DEPENDENCIES = ['numpy', 'scipy', 'sklearn']
DEPENDENCIES = ['numpy', 'scipy', 'pandas']


def print_package_version(package_name, indent=' '):
Expand All @@ -14,6 +14,7 @@ def print_package_version(package_name, indent=' '):

print('{0}{1}: {2}'.format(indent, package_name, provenance_info))


if __name__ == '__main__':
print('=' * 120)
print('Python %s' % str(sys.version))
Expand Down

0 comments on commit 323fee1

Please sign in to comment.