Skip to content

Commit 0069da3

Browse files
authored
TST: use latest version of miniconda on Travis (#172)
My local tests seem to show that conda-forge/google-cloud-bigquery-feedstock#10 has been resolved with the latest release of Miniconda (most recent update was on 2018-05-02).
1 parent d038ace commit 0069da3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ install:
2525
if [ -f "$REQ.pip" ]; then
2626
pip install --upgrade nox-automation ;
2727
else
28-
wget http://repo.continuum.io/miniconda/Miniconda3-4.3.30-Linux-x86_64.sh -O miniconda.sh;
28+
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
2929
bash miniconda.sh -b -p $HOME/miniconda ;
3030
export PATH="$HOME/miniconda/bin:$PATH" ;
3131
hash -r ;
@@ -49,7 +49,7 @@ script:
4949
- if [[ $PYTHON == '3.6' ]] && [[ "$PANDAS" == "MASTER" ]]; then nox -s test36master ; fi
5050
- REQ="ci/requirements-${PYTHON}-${PANDAS}" ;
5151
if [ -f "$REQ.conda" ]; then
52-
pytest -v tests ;
52+
pytest -v tests/unit tests/system.py ;
5353
fi
5454
- if [[ $COVERAGE == 'true' ]]; then nox -s cover ; fi
5555
- if [[ $LINT == 'true' ]]; then nox -s lint ; fi

0 commit comments

Comments
 (0)