Skip to content

Commit 2ac533d

Browse files
Sheppard, KevinSheppard, Kevin
authored andcommitted
TST: Updat travis and appveyor scripts
1 parent f7bbc1c commit 2ac533d

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,16 @@ before_install:
3232
- ./miniconda.sh -b
3333
- export PATH=$HOME/miniconda/bin:$PATH
3434
- export PATH=$HOME/miniconda2/bin:$PATH
35-
- conda update --yes --quiet conda
35+
- conda config --set always_yes yes
36+
- conda update --all --quiet
3637
- PKGS="python=${PYTHON}"
3738
- PKGS="${PKGS} numpy"; if [ ${NUMPY} ]; then PKGS="${PKGS}=${NUMPY}"; fi
3839
- PKGS="${PKGS} Cython"; if [ ${CYTHON} ]; then PKGS="${PKGS}=${CYTHON}"; fi
3940
- PKGS="${PKGS} pandas"; if [ ${PANDAS} ]; then PKGS="${PKGS}=${PANDAS}"; fi
4041

4142
# Install packages
4243
install:
43-
- conda create --yes --quiet -n rng-test ${PKGS} nose pip setuptools
44+
- conda create -n rng-test ${PKGS} nose pip setuptools --quiet
4445
- source activate rng-test
4546
- export BUILD_DIR=$PWD
4647
- python setup.py install

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ build_script:
1717
- cmd: C:\Miniconda.exe /S /D=C:\Py
1818
- SET PATH=C:\Py;C:\Py\Scripts;C:\Py\Library\bin;%PATH%
1919
- conda config --set always_yes yes
20-
- conda update conda
21-
- conda install numpy cython nose
20+
- conda update conda --quiet
21+
- conda install numpy cython nose --quiet
2222
- pip install . -vvv
2323

2424
test_script:

0 commit comments

Comments
 (0)