Skip to content

Commit d9d5bde

Browse files
committed
TST: add semicolons
1 parent c4e088a commit d9d5bde

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

.travis.yml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,34 @@ before_install:
1313
- source ci/travis_process_gbq_encryption.sh
1414

1515
install:
16-
- REQ="ci/requirements-${PYTHON}-${PANDAS}"
16+
- REQ="ci/requirements-${PYTHON}-${PANDAS}" ;
1717
if [ -f "$REQ.pip" ]; then
18-
pip install --upgrade nox-automation
18+
pip install --upgrade nox-automation ;
1919
else
2020
wget http://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh;
21-
bash miniconda.sh -b -p $HOME/miniconda
22-
export PATH="$HOME/miniconda/bin:$PATH"
23-
hash -r
24-
conda config --set always_yes yes --set changeps1 no
25-
conda config --add channels pandas
26-
conda config --add channels conda-forge
27-
conda update -q conda
28-
conda info -a
29-
conda create -q -n test-environment python=$PYTHON
30-
source activate test-environment
21+
bash miniconda.sh -b -p $HOME/miniconda ;
22+
export PATH="$HOME/miniconda/bin:$PATH" ;
23+
hash -r ;
24+
conda config --set always_yes yes --set changeps1 no ;
25+
conda config --add channels pandas ;
26+
conda config --add channels conda-forge ;
27+
conda update -q conda ;
28+
conda info -a ;
29+
conda create -q -n test-environment python=$PYTHON ;
30+
source activate test-environment ;
3131
conda install -q pandas=$PANDAS;
32-
pip install coverage pytest pytest-cov flake8 codecov
32+
pip install coverage pytest pytest-cov flake8 codecov ;
3333
conda install -q --file "$REQ.conda";
34-
conda list
35-
python setup.py install
34+
conda list ;
35+
python setup.py install ;
3636
fi
3737

3838
script:
3939
- if [[ $PYTHON == '2.7' ]]; then nox -s test27 ; fi
4040
- if [[ $PYTHON == '3.5' ]]; then nox -s test35 ; fi
4141
- if [[ $PYTHON == '3.6' ]] && [[ "$PANDAS" == "MASTER" ]]; then nox -s test36master ; fi
42-
- if [ -f "$REQ.conda" ]; then
42+
- REQ="ci/requirements-${PYTHON}-${PANDAS}" ;
43+
if [ -f "$REQ.conda" ]; then
4344
pip install coverage pytest pytest-cov codecov ;
4445
pytest -v --cov=pandas_gbq --cov-report xml:/tmp/pytest-cov.xml pandas_gbq ;
4546
fi

0 commit comments

Comments
 (0)